[patch 4/6] PS3: Add os-area rtc_diff set/get routines

2007-10-06 Thread geoffrey . levand
Updates for PS3 os-area rtc_diff set/get routines o Add a new routine ps3_os_area_set_rtc_diff(). o Rename ps3_os_area_rtc_diff() to ps3_os_area_get_rtc_diff(). o Remove static variable rtc_shift with calls to ps3_os_area_get_rtc_diff(). Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/po

[patch 6/6] PS3: Add os-area database routines

2007-10-06 Thread geoffrey . levand
Add support for a simple tagged database in the PS3 flash rom os-area. The database allows the flash rom os-area to be shared between a bootloder and installed operating systems. The application ps3-flash-util or the library libps3-utils from the ps3-utils package can be used for userspace datab

[patch 3/6] PS3: os-area workqueue processing

2007-10-06 Thread geoffrey . levand
Add a workqueue to the PS3 os-area support. This is needed to support writing updates to flash memory and to update the /proc device tree entries from the timer tick interrupt context. Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/powerpc/platforms/ps3/os-area.c | 23 +++

[patch 2/6] PS3: Remove unused os-area params

2007-10-06 Thread geoffrey . levand
Updates for PS3 os-area startup params o Remove some unused PS3 os-area startup params from struct saved_params. o Rename ps3_os_area_init() to ps3_os_area_save_params(). o Zero mirrored header after saving params. Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/powerpc/platforms/ps3/os-

[patch 0/6] PS3 os area patches for 2.6.24

2007-10-06 Thread geoffrey . levand
Paul, This is a small set of patches that reworks and improves the 'other os' area of the PS3's flash rom. Please apply for 2.6.24. -Geoff -- ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

[patch 5/6] PS3: Save os-area params to device tree

2007-10-06 Thread geoffrey . levand
Add the PS3 os-area startup params to the device tree. This allows a second stage kernel loaded with kexec to use these values. Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/powerpc/platforms/ps3/os-area.c | 104 +- arch/powerpc/platforms/ps3/platform

[patch 1/6] PS3: Cleanup of os-area.c

2007-10-06 Thread geoffrey . levand
Minor cleanup of the PS3 file os-area.c: o Correct file text header. o Add type names enum os_area_ldr_format, enum os_area_boot_flag, enum os_area_ctrl_button. o Change struct os_area_header.magic_num type to u8. o Add preprocessor macro SECONDS_FROM_1970_TO_2000. Signed-off-by: Geoff Leva

[patch 3/3] PS3: Enhance storage probe debug output

2007-09-12 Thread geoffrey . levand
Add some more info to the PS3 storage probe debug output. Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/powerpc/platforms/ps3/device-init.c | 24 1 files changed, 16 insertions(+), 8 deletions(-) --- a/arch/powerpc/platforms/ps3/device-init.c +++ b/arch/powe

[patch 1/3] PS3: Fix CONFIG_SMP=n, CONFIG_KEXEC=y build

2007-09-12 Thread geoffrey . levand
From: Jeremy Kerr <[EMAIL PROTECTED]> Currently, the ps3 kernel fails to build without smp but with kexec, as ps3_kexec_cpu_down needs ps3_smp_cleanup_cpu, which isn't defined on UP kernels. This change adds an empty ps3_smp_cleanup_cpu for UP kernels. Booted on ps3. Signed-off-by: Jeremy Kerr <

[patch 0/3] PS3 patches for 2.6.24

2007-09-12 Thread geoffrey . levand
Paul, This is a small set of patches for 2.6.24. -- ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

[patch 2/3] PS3: Add new LV1 error codes

2007-09-12 Thread geoffrey . levand
From: Geert Uytterhoeven <[EMAIL PROTECTED]> PS3: Add new error codes that may be returned by the LV1 hypervisor Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- include/asm-powerpc/ps3.h |9 + 1 file changed, 9 insertions(+)

[patch 3/3] PS3: Update ps3_defconfig

2007-08-07 Thread geoffrey . levand
Update ps3_defconfig. Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/powerpc/configs/ps3_defconfig | 200 - 1 file changed, 65 insertions(+), 135 deletions(-) --- a/arch/powerpc/configs/ps3_defconfig +++ b/arch/powerpc/configs/ps3_defconfig @@ -1,9

[patch 1/3] PS3: Fix storage probe logic

2007-08-07 Thread geoffrey . levand
From: Geert Uytterhoeven <[EMAIL PROTECTED]> Fix the PS3 storage probe logic to properly find device regions on cold startup. o Change the storage probe event mask from notify_device_ready to notify_region_update. o Improve the storage probe error handling. o Change ps3_storage_wait_for_dev

[patch 2/3] PS3: Remove incomplete message

2007-08-07 Thread geoffrey . levand
Remove the Kconfig message that indicates the PS3 platform support is incomplete. Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- arch/powerpc/platforms/ps3/Kconfig | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/arch/powerpc/platforms/ps3/Kconfig +++ b/arch/powerpc/

[patch 0/3] PS3 bugfix patches for 2.6.23

2007-08-07 Thread geoffrey . levand
Hi Paul, This small set of PS3 bugfix patches for 2.6.23. [patch 1/3] PS3: Fix storage probe logic [patch 2/3] PS3: Remove incomplete message [patch 3/3] PS3: Update ps3_defconfig Patch 1 fixes a cold startup timing bug in the hard disk probe logic. Patch 2 removes the 'incomplete' messag