* Patches added to powerpc.git for-2.6.24 branch
@ 2007-08-22 9:47 Paul Mackerras
2007-08-22 12:44 ` Timur Tabi
2007-08-22 13:25 ` Kumar Gala
0 siblings, 2 replies; 17+ messages in thread
From: Paul Mackerras @ 2007-08-22 9:47 UTC (permalink / raw)
To: linuxppc-dev
Josh Boyer (10):
[POWERPC] Rename 4xx paths to 40x
[POWERPC] 4xx Kconfig cleanup
[POWERPC] Rename 44x bootwrapper
[POWERPC] 4xx bootwrapper reworks
[POWERPC] 40x MMU
[POWERPC] 40x decrementer fixes
[POWERPC] Fix 40x build
[POWERPC] Bamboo DTS
[POWERPC] Bamboo board support
[POWERPC] Bamboo zImage wrapper
Olaf Hering (1):
[POWERPC] Advertise correct IDE mode on Pegasos2
Olof Johansson (1):
[POWERPC] Rework SMP timebase handoff for pasemi
Scott Wood (15):
[POWERPC] Whitespace cleanup in arch/powerpc
[POWERPC] Add clrbits8 and setbits8
[POWERPC] Use strcasecmp() rather than strncasecmp() when determining device node compatibility
[POWERPC] bootwrapper: Update .gitignore
[POWERPC] bootwrapper: Set timebase_period_ns from dt_fixup_cpu_clocks
[POWERPC] bootwrapper: dt_xlate_range() bugfixes
[POWERPC] bootwrapper: Add dt_is_compatible()
[POWERPC] bootwrapper: Add 16-bit I/O, sync(), eieio(), and barrier()
[POWERPC] bootwrapper: Add TARGET_HAS_ETHn tests to ppcboot.h
[POWERPC] bootwrapper: serial_console_init() fixes
[POWERPC] bootwrapper: Declare udelay() in ops.h
[POWERPC] bootwrapper: Add CPM serial driver
[POWERPC] bootwrapper: Move linker symbols into ops.h
[POWERPC] bootwrapper: Add 8xx cuboot support
[POWERPC] bootwrapper: Add PowerQUICC II (82xx with CPM) cuboot support
Stephen Rothwell (6):
[POWERPC] iSeries: Clean up lparmap mess
[POWERPC] Move iSeries startup code out of head_64.S
[POWERPC] Move the exception macros into a header file
[POWERPC] Move the iSeries exception vectors
[POWERPC] Split out iSeries specific exception macros
[POWERPC] Exception numbers are not relevant to iSeries
arch/powerpc/Makefile | 2
arch/powerpc/boot/.gitignore | 8
arch/powerpc/boot/44x.c | 85 ---
arch/powerpc/boot/44x.h | 5
arch/powerpc/boot/4xx.c | 192 +++++++
arch/powerpc/boot/4xx.h | 21 +
arch/powerpc/boot/Makefile | 10
arch/powerpc/boot/bamboo.c | 45 ++
arch/powerpc/boot/cpm-serial.c | 249 +++++++++
arch/powerpc/boot/cuboot-83xx.c | 1
arch/powerpc/boot/cuboot-85xx.c | 1
arch/powerpc/boot/cuboot-8xx.c | 45 ++
arch/powerpc/boot/cuboot-pq2.c | 283 ++++++++++
arch/powerpc/boot/cuboot.c | 3
arch/powerpc/boot/dcr.h | 13
arch/powerpc/boot/devtree.c | 70 ++-
arch/powerpc/boot/dts/bamboo.dts | 244 +++++++++
arch/powerpc/boot/dts/mpc8272ads.dts | 376 +++++++-------
arch/powerpc/boot/ebony.c | 6
arch/powerpc/boot/holly.c | 5
arch/powerpc/boot/io.h | 49 ++
arch/powerpc/boot/main.c | 10
arch/powerpc/boot/mpsc.c | 1
arch/powerpc/boot/mv64x60_i2c.c | 2
arch/powerpc/boot/of.c | 2
arch/powerpc/boot/ops.h | 24 +
arch/powerpc/boot/ppcboot.h | 7
arch/powerpc/boot/prpmc2800.c | 6
arch/powerpc/boot/ps3.c | 4
arch/powerpc/boot/serial.c | 19 -
arch/powerpc/boot/treeboot-bamboo.c | 27 +
arch/powerpc/boot/treeboot-ebony.c | 2
arch/powerpc/configs/bamboo_defconfig | 775 ++++++++++++++++++++++++++++
arch/powerpc/kernel/Makefile | 9
arch/powerpc/kernel/asm-offsets.c | 8
arch/powerpc/kernel/head_40x.S | 3
arch/powerpc/kernel/head_64.S | 585 +--------------------
arch/powerpc/kernel/irq.c | 4
arch/powerpc/kernel/lparmap.c | 32 -
arch/powerpc/kernel/ppc_ksyms.c | 2
arch/powerpc/kernel/prom_init.c | 11
arch/powerpc/kernel/time.c | 2
arch/powerpc/mm/40x_mmu.c | 4
arch/powerpc/mm/Makefile | 2
arch/powerpc/platforms/40x/Kconfig | 77 ---
arch/powerpc/platforms/40x/Makefile | 0
arch/powerpc/platforms/44x/Kconfig | 15 -
arch/powerpc/platforms/44x/Makefile | 1
arch/powerpc/platforms/44x/bamboo.c | 66 ++
arch/powerpc/platforms/8xx/m8xx_setup.c | 72 +--
arch/powerpc/platforms/Kconfig | 1
arch/powerpc/platforms/Kconfig.cputype | 2
arch/powerpc/platforms/chrp/pci.c | 29 +
arch/powerpc/platforms/iseries/Makefile | 1
arch/powerpc/platforms/iseries/exception.S | 251 +++++++++
arch/powerpc/platforms/iseries/exception.h | 58 ++
arch/powerpc/platforms/pasemi/setup.c | 24 +
arch/powerpc/sysdev/commproc.c | 20 -
arch/powerpc/sysdev/cpm2_common.c | 2
include/asm-powerpc/exception.h | 309 +++++++++++
include/asm-powerpc/io.h | 3
include/asm-powerpc/iseries/lpar_map.h | 3
include/asm-powerpc/mmu-40x.h | 65 ++
include/asm-powerpc/mmu.h | 3
include/asm-powerpc/page_64.h | 2
include/asm-powerpc/ppc_asm.h | 14 +
include/asm-powerpc/prom.h | 2
include/asm-powerpc/time.h | 2
68 files changed, 3158 insertions(+), 1118 deletions(-)
delete mode 100644 arch/powerpc/boot/44x.c
create mode 100644 arch/powerpc/boot/4xx.c
create mode 100644 arch/powerpc/boot/4xx.h
create mode 100644 arch/powerpc/boot/bamboo.c
create mode 100644 arch/powerpc/boot/cpm-serial.c
create mode 100644 arch/powerpc/boot/cuboot-8xx.c
create mode 100644 arch/powerpc/boot/cuboot-pq2.c
create mode 100644 arch/powerpc/boot/dts/bamboo.dts
create mode 100644 arch/powerpc/boot/treeboot-bamboo.c
create mode 100644 arch/powerpc/configs/bamboo_defconfig
rename arch/powerpc/kernel/{head_4xx.S => head_40x.S} (99%)
delete mode 100644 arch/powerpc/kernel/lparmap.c
rename arch/powerpc/mm/{4xx_mmu.c => 40x_mmu.c} (96%)
rename arch/powerpc/platforms/{4xx/Kconfig => 40x/Kconfig} (68%)
rename arch/powerpc/platforms/{4xx/Makefile => 40x/Makefile} (100%)
create mode 100644 arch/powerpc/platforms/44x/bamboo.c
create mode 100644 arch/powerpc/platforms/iseries/exception.S
create mode 100644 arch/powerpc/platforms/iseries/exception.h
create mode 100644 include/asm-powerpc/exception.h
create mode 100644 include/asm-powerpc/mmu-40x.h
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 9:47 Patches added to powerpc.git for-2.6.24 branch Paul Mackerras
@ 2007-08-22 12:44 ` Timur Tabi
2007-08-22 14:03 ` Kumar Gala
2007-08-22 13:25 ` Kumar Gala
1 sibling, 1 reply; 17+ messages in thread
From: Timur Tabi @ 2007-08-22 12:44 UTC (permalink / raw)
To: Paul Mackerras; +Cc: linuxppc-dev
Paul Mackerras wrote:
> Scott Wood (15):
> [POWERPC] Add clrbits8 and setbits8
No love for my similar patch that adds the clrsetbits macros? Or the one that changes immap_86xx.h?
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 12:44 ` Timur Tabi
@ 2007-08-22 14:03 ` Kumar Gala
2007-08-22 14:22 ` Timur Tabi
0 siblings, 1 reply; 17+ messages in thread
From: Kumar Gala @ 2007-08-22 14:03 UTC (permalink / raw)
To: Timur Tabi; +Cc: linuxppc-dev, Paul Mackerras
On Aug 22, 2007, at 7:44 AM, Timur Tabi wrote:
> Paul Mackerras wrote:
>
>> Scott Wood (15):
>> [POWERPC] Add clrbits8 and setbits8
>
> No love for my similar patch that adds the clrsetbits macros? Or
> the one that changes immap_86xx.h?
I think the clrsetbits macros needs some further cleanup. I think
Stephen mentioned doing something like we do for DEF_MMIO_OUT_BE() to
only have one 'actual' macro.
The immap_86xx.h will go through me since its FSL code.
- k
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 14:03 ` Kumar Gala
@ 2007-08-22 14:22 ` Timur Tabi
0 siblings, 0 replies; 17+ messages in thread
From: Timur Tabi @ 2007-08-22 14:22 UTC (permalink / raw)
To: Kumar Gala; +Cc: linuxppc-dev, Paul Mackerras
Kumar Gala wrote:
> I think the clrsetbits macros needs some further cleanup. I think
> Stephen mentioned doing something like we do for DEF_MMIO_OUT_BE() to
> only have one 'actual' macro.
Yeah I saw that one, but on IRC a few people said they don't like ##, so I
decided against it. Are you saying I should change it anyway?
> The immap_86xx.h will go through me since its FSL code.
I was thinking some more about that file this morning. If you want, I can
rename it to guts.h since it only has one structure in it, and then also
update a few other files that use the global utilities registers to use that
structure instead of using macros.
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 9:47 Patches added to powerpc.git for-2.6.24 branch Paul Mackerras
2007-08-22 12:44 ` Timur Tabi
@ 2007-08-22 13:25 ` Kumar Gala
2007-08-22 14:59 ` Kumar Gala
1 sibling, 1 reply; 17+ messages in thread
From: Kumar Gala @ 2007-08-22 13:25 UTC (permalink / raw)
To: Paul Mackerras; +Cc: linuxppc-dev
How do we want to handle the include cleanup I've got.
I know you'd like some way of showing it complete. Any ideas?
- k
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 13:25 ` Kumar Gala
@ 2007-08-22 14:59 ` Kumar Gala
2007-08-22 22:39 ` Arnd Bergmann
0 siblings, 1 reply; 17+ messages in thread
From: Kumar Gala @ 2007-08-22 14:59 UTC (permalink / raw)
To: Paul Mackerras; +Cc: linuxppc-dev@ozlabs.org list
On Aug 22, 2007, at 8:25 AM, Kumar Gala wrote:
> How do we want to handle the include cleanup I've got.
>
> I know you'd like some way of showing it complete. Any ideas?
So I did the following:
1. generate a file listing of asm-powerpc vs asm-ppc and diff them to
find all files in asm-ppc not in asm-powerpc (after my patches)
2. count the number of references using the following grep:
grep -r asm/ppcboot.h . | grep -v arch/ppc | grep -v include/asm-ppc
| grep -v arch/[a-o,q-z] | grep -v include/asm-[a-o,q-z] | wc -l
I get the following results:
0: asm/amigappc.h
0: asm/gg2.h
0: asm/gt64260_defs.h
0: asm/gt64260.h
0: asm/harrier.h
0: asm/hawk_defs.h
0: asm/hawk.h
0: asm/ibm403.h
0: asm/ibm405.h
0: asm/ibm_ocp.h
0: asm/ibm_ocp_pci.h
0: asm/immap_85xx.h
0: asm/m8260_pci.h
0: asm/md.h
0: asm/mk48t59.h
0: asm/mpc10x.h
0: asm/mpc8260_pci9.h
0: asm/mv64x60_defs.h
0: asm/mv64x60.h
0: asm/ocp_ids.h
0: asm/open_pic.h
0: asm/pc_serial.h
0: asm/pnp.h
0: asm/ppc4xx_dma.h
0: asm/ppc4xx_pic.h
0: asm/ppc_sys.h
0: asm/prep_nvram.h
0: asm/raven.h
0: asm/rio.h
0: asm/todc.h
1: asm/amipcmcia.h
1: asm/mpc83xx.h
1: asm/residual.h
1: asm/zorro.h
2: asm/amigayle.h
2: asm/ppcboot.h
3: asm/ibm4xx.h
4: asm/ibm44x.h
4: asm/traps.h
8: asm/ocp.h
12: asm/bootinfo.h
29: asm/amigaints.h
32: asm/amigahw.h
I think we can all agree that the amiga*.h, zorro.h and traps.h can
be ignored since they have to do with amiga/apus support.
I'll take a look at the following and see what's going on:
1: asm/mpc83xx.h
1: asm/residual.h
2: asm/ppcboot.h
3: asm/ibm4xx.h
4: asm/ibm44x.h
8: asm/ocp.h
12: asm/bootinfo.h
- k
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 14:59 ` Kumar Gala
@ 2007-08-22 22:39 ` Arnd Bergmann
2007-08-22 23:28 ` Kumar Gala
0 siblings, 1 reply; 17+ messages in thread
From: Arnd Bergmann @ 2007-08-22 22:39 UTC (permalink / raw)
To: linuxppc-dev; +Cc: Paul Mackerras
On Wednesday 22 August 2007, Kumar Gala wrote:
> I think we can all agree that the amiga*.h, zorro.h and traps.h can =A0
> be ignored since they have to do with amiga/apus support.
arch/powerpc/kernel/setup_32.c unconditionally #includes <asm/amigappc.h>,
the rest looks unused indeed.
Arnd <><
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-08-22 22:39 ` Arnd Bergmann
@ 2007-08-22 23:28 ` Kumar Gala
0 siblings, 0 replies; 17+ messages in thread
From: Kumar Gala @ 2007-08-22 23:28 UTC (permalink / raw)
To: Arnd Bergmann; +Cc: linuxppc-dev, Paul Mackerras
On Aug 22, 2007, at 5:39 PM, Arnd Bergmann wrote:
> On Wednesday 22 August 2007, Kumar Gala wrote:
>> I think we can all agree that the amiga*.h, zorro.h and traps.h can
>> be ignored since they have to do with amiga/apus support.
>
> arch/powerpc/kernel/setup_32.c unconditionally #includes <asm/
> amigappc.h>,
> the rest looks unused indeed.
Yeah, that's fixed up in my patches.
- k
^ permalink raw reply [flat|nested] 17+ messages in thread
* Patches added to powerpc.git for-2.6.24 branch
@ 2007-09-13 17:53 Paul Mackerras
2007-09-14 1:43 ` Michael Neuling
0 siblings, 1 reply; 17+ messages in thread
From: Paul Mackerras @ 2007-09-13 17:53 UTC (permalink / raw)
To: linuxppc-dev
David Gibson (2):
[POWERPC] Move bootwrapper's strchr() and strncmp() from .h to string.S
[POWERPC] Document and implement an improved flash device binding for powerpc
Geert Uytterhoeven (1):
[POWERPC] PS3: Add new LV1 error codes
Geoff Levand (1):
[POWERPC] PS3: Enhance storage probe debug output
Jeremy Kerr (1):
[POWERPC] PS3: Fix CONFIG_SMP=n, CONFIG_KEXEC=y build
Josh Boyer (6):
[POWERPC] Remove dtc build cruft from DTS files
[POWERPC] Fix bus probe on Bamboo board
[POWERPC] Walnut DTS
[POWERPC] Walnut defconfig
[POWERPC] Walnut board support
[POWERPC] Walnut zImage wrapper
Kumar Gala (3):
[POWERPC] Remove old includes from arch/ppc
[POWERPC] Copy over headers from arch/ppc to arch/powerpc that we need
[POWERPC] Stop include asm-ppc when building ARCH=powerpc for ppc32
Linas Vepstas (4):
[POWERPC] IOMMU virtual merge is no longer experimental
[POWERPC] prom_init whitespace cleanup, typo fix
[POWERPC] prom.c whitespace cleanup
[POWERPC] setup_64.c and prom.c comment cleanup
Michael Ellerman (5):
[POWERPC] Add an optional device_node pointer to the irq_host
[POWERPC] Invert null match behaviour for irq_hosts
[POWERPC] Provide a default irq_host match, which matches on an exact of_node
[POWERPC] Initialise hwirq for legacy irqs
[POWERPC] Export virq mapping via debugfs
Olof Johansson (10):
[POWERPC] Export new __io{re,un}map_at() symbols
[POWERPC] pasemi: Add pasemi_pci_getcfgaddr()
[POWERPC] pasemi: Add workaround for erratum 5945
[POWERPC] pasemi: Export more SPRs to sysfs when CONFIG_DEBUG_KERNEL=y
[POWERPC] pasemi: Print more information at machine check
[POWERPC] pasemi: Move pasemi_idle_init() to late_initcall()
[POWERPC] Remove unused platform_machine_check()
[POWERPC] Move lowlevel runlatch calls under cpu feature control
[POWERPC] Remove warning in arch/powerpc/kernel/sysfs.c
[POWERPC] Add workaround for MPICs with broken register reads
Scott Wood (5):
[POWERPC] bootwrapper: flatdevtree fixes
[POWERPC] bootwrapper: Add strtoull()
[POWERPC] bootwrapper: Add get_path()
[POWERPC] bootwrapper: Only print MAC addresses when the node is actually present
[POWERPC] Check _PAGE_RW and _PAGE_PRESENT on kernel addresses
Valentine Barshak (4):
[POWERPC] PowerPC 440EPx: Sequoia device tree
[POWERPC] PowerPC 440EPx: Sequoia defconfig
[POWERPC] PowerPC 440EPx: Sequoia board support
[POWERPC] PowerPC 440EPx: Sequoia bootwrapper
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Patches added to powerpc.git for-2.6.24 branch
2007-09-13 17:53 Paul Mackerras
@ 2007-09-14 1:43 ` Michael Neuling
0 siblings, 0 replies; 17+ messages in thread
From: Michael Neuling @ 2007-09-14 1:43 UTC (permalink / raw)
To: Paul Mackerras; +Cc: linuxppc-dev
Paulus,
Could you take this as well for 2.6.24?
Remove barriers from the SLB shadow buffer update
http://patchwork.ozlabs.org/linuxppc/patch?id=13116
Mikey
In message <18153.30975.926456.819248@cargo.ozlabs.ibm.com> you wrote:
> David Gibson (2):
> [POWERPC] Move bootwrapper's strchr() and strncmp() from .h to string.S
> [POWERPC] Document and implement an improved flash device binding for p
owerpc
>
> Geert Uytterhoeven (1):
> [POWERPC] PS3: Add new LV1 error codes
>
> Geoff Levand (1):
> [POWERPC] PS3: Enhance storage probe debug output
>
> Jeremy Kerr (1):
> [POWERPC] PS3: Fix CONFIG_SMP=n, CONFIG_KEXEC=y build
>
> Josh Boyer (6):
> [POWERPC] Remove dtc build cruft from DTS files
> [POWERPC] Fix bus probe on Bamboo board
> [POWERPC] Walnut DTS
> [POWERPC] Walnut defconfig
> [POWERPC] Walnut board support
> [POWERPC] Walnut zImage wrapper
>
> Kumar Gala (3):
> [POWERPC] Remove old includes from arch/ppc
> [POWERPC] Copy over headers from arch/ppc to arch/powerpc that we need
> [POWERPC] Stop include asm-ppc when building ARCH=powerpc for ppc32
>
> Linas Vepstas (4):
> [POWERPC] IOMMU virtual merge is no longer experimental
> [POWERPC] prom_init whitespace cleanup, typo fix
> [POWERPC] prom.c whitespace cleanup
> [POWERPC] setup_64.c and prom.c comment cleanup
>
> Michael Ellerman (5):
> [POWERPC] Add an optional device_node pointer to the irq_host
> [POWERPC] Invert null match behaviour for irq_hosts
> [POWERPC] Provide a default irq_host match, which matches on an exact o
f_node
> [POWERPC] Initialise hwirq for legacy irqs
> [POWERPC] Export virq mapping via debugfs
>
> Olof Johansson (10):
> [POWERPC] Export new __io{re,un}map_at() symbols
> [POWERPC] pasemi: Add pasemi_pci_getcfgaddr()
> [POWERPC] pasemi: Add workaround for erratum 5945
> [POWERPC] pasemi: Export more SPRs to sysfs when CONFIG_DEBUG_KERNEL=y
> [POWERPC] pasemi: Print more information at machine check
> [POWERPC] pasemi: Move pasemi_idle_init() to late_initcall()
> [POWERPC] Remove unused platform_machine_check()
> [POWERPC] Move lowlevel runlatch calls under cpu feature control
> [POWERPC] Remove warning in arch/powerpc/kernel/sysfs.c
> [POWERPC] Add workaround for MPICs with broken register reads
>
> Scott Wood (5):
> [POWERPC] bootwrapper: flatdevtree fixes
> [POWERPC] bootwrapper: Add strtoull()
> [POWERPC] bootwrapper: Add get_path()
> [POWERPC] bootwrapper: Only print MAC addresses when the node is actual
ly present
> [POWERPC] Check _PAGE_RW and _PAGE_PRESENT on kernel addresses
>
> Valentine Barshak (4):
> [POWERPC] PowerPC 440EPx: Sequoia device tree
> [POWERPC] PowerPC 440EPx: Sequoia defconfig
> [POWERPC] PowerPC 440EPx: Sequoia board support
> [POWERPC] PowerPC 440EPx: Sequoia bootwrapper
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Patches added to powerpc.git for-2.6.24 branch
@ 2007-09-20 1:42 Paul Mackerras
2007-09-20 2:52 ` Jeremy Kerr
0 siblings, 1 reply; 17+ messages in thread
From: Paul Mackerras @ 2007-09-20 1:42 UTC (permalink / raw)
To: linuxppc-dev
Adrian Bunk (1):
[POWERPC] Remove APUS support from arch/ppc
Andre Detsch (1):
[POWERPC] spufs: Fix race condition on gang->aff_ref_spu
Anton Vorontsov (3):
[POWERPC] QE: extern par_io_config_pin and par_io_data_set funcs
[POWERPC] fsl_soc: add support for fsl_spi
[POWERPC] MPC832x_RDB: Update dts to use SPI1 in QE, register mmc_spi stub
Domen Puncer (1):
[POWERPC] MPC5200 low power mode
Guennadi Liakhovetski (1):
[POWERPC] linkstation updates
Jeremy Kerr (6):
[POWERPC] spufs: Remove asmlinkage from do_spu_create
[POWERPC] spufs: Remove spu_harvest
[POWERPC] cell: Unify spufs syscall path
[POWERPC] spufs: Remove asmlinkage from spufs_calls
[POWERPC] spufs: Fix restore_decr_wrapped() to match CBE Handbook
[POWERPC] cell: Remove DEBUG for SPU callbacks
Jesper Juhl (1):
[POWERPC] Don't cast kmalloc return value in ibmebus.c
John Rigby (1):
[POWERPC] 52xx: Fix mpc52xx_uart_of_assign to use correct index
Jon Loeliger (2):
[POWERPC] 86xx: Remove unnecessary loops_per_jiffy initialization code.
[POWERPC] 85xx: Remove unnecessary loops_per_jiffy initialization code.
Kumar Gala (10):
ucc_geth: kill unused include
[POWERPC] 85xx: Renamed mpc8544_ds.c to mpc85xx_ds.c
[POWERPC] 85xx: Clean up from 85xx_ds rename
[POWERPC] Handle alignment faults on SPE load/store instructions
[POWERPC] 85xx: Add basic Uniprocessor MPC8572 DS port
[POWERPC] DTS cleanup
[POWERPC] Move PCI nodes to be sibilings with SOC nodes
[POWERPC] 83xx: Removed PCI exclude of PHB
[POWERPC] Add cpu feature for SPE handling
[POWERPC] Fix modpost warnings from head*.S on ppc32
Michael Ellerman (15):
[POWERPC] spufs: Extract the file descriptor search logic in SPU coredump code
[POWERPC] spufs: Remove ctx_info and ctx_info_list
[POWERPC] spufs: Call spu_acquire_saved() before calculating the SPU note sizes
[POWERPC] spufs: Use computed sizes/#defines rather than literals in SPU coredump code
[POWERPC] spufs: Write some SPU coredump values as ASCII
[POWERPC] spufs: Correctly calculate the size of the local-store to dump
[POWERPC] spufs: Don't return -ENOSYS as extra notes size if spufs is not loaded
[POWERPC] spufs: Get rid of spufs_coredump_num_notes, it's not needed if we NULL terminate
[POWERPC] spufs: Internal __spufs_get_foo() routines should take a spu_context *
[POWERPC] spufs: Add contents of npc file to SPU coredumps
[POWERPC] spufs: Combine spufs_coredump_calls with spufs_calls
[POWERPC] spufs: Cleanup ELF coredump extra notes logic
[POWERPC] spufs: Handle errors in SPU coredump code, and support coredump to a pipe
[POWERPC] spufs: Respect RLIMIT_CORE in spu coredump code
[POWERPC] spufs: Add DEFINE_SPUFS_ATTRIBUTE()
Michael Neuling (1):
[POWERPC] Remove barriers from the SLB shadow buffer update
Olaf Hering (1):
[POWERPC] Fix pmac_zilog debug arg
Scott Wood (2):
[POWERPC] fsl_soc.c cleanup
[PPC] Add clrbits8 and setbits8.
Sebastian Siewior (2):
[POWERPC] spufs: Make file-internal functions & variables static
[POWERPC] spufs: Make isolated loader properly aligned
Stephen Rothwell (4):
[POWERPC] Fix section mismatch in PCI code
[POWERPC] Remove cmd_line from head*.S
[POWERPC] Size swapper_pg_dir correctly
[POWERPC] FWNMI is only used on pSeries
Timur Tabi (2):
[POWERPC] add clrsetbits macros
[POWERPC] 86xx: Fix definition of global-utilites structure
^ permalink raw reply [flat|nested] 17+ messages in thread
* Patches added to powerpc.git for-2.6.24 branch
@ 2007-10-03 6:27 Paul Mackerras
2007-10-03 7:15 ` Stephen Rothwell
2007-10-03 13:41 ` Kumar Gala
0 siblings, 2 replies; 17+ messages in thread
From: Paul Mackerras @ 2007-10-03 6:27 UTC (permalink / raw)
To: linuxppc-dev
Adrian Bunk (1):
[POWERPC] Select proper defconfig for crosscompiles
Aristeu Rozanski (1):
[POWERPC] adbhid: Enable KEY_FN key reporting
Arnd Bergmann (3):
[POWERPC] add Kconfig option for optimizing for cell
[POWERPC] Move embedded6xx into multiplatform
[POWERPC] Fix pci domain detection
Benjamin Herrenschmidt (1):
[POWERPC] Fix platinumfb framebuffer
Cyrill Gorcunov (6):
[POWERPC] Sky Cpu and Nexus: code style improvement
[POWERPC] Sky Cpu and Nexus: include io.h
[POWERPC] Sky Cpu and Nexus: check for platform_get_resource retcode
[POWERPC] Sky Cpu and Nexus: check for create_proc_entry ret code
[POWERPC] Sky Cpu: use C99 style for struct init
[POWERPC] Sky Cpu and Nexus: use seq_file/single_open on proc interface
Dale Farnsworth (1):
[POWERPC] Add Marvell mv64x60 udbg putc/getc functions
David Woodhouse (1):
[POWERPC] Optionally use new device number for pmac_zilog
Domen Puncer (1):
[POWERPC] clk.h interface for platforms
Ed Swarthout (1):
[POWERPC] Add memory regions to the kcore list for 32-bit machines
Emil Medve (1):
[POWERPC] Fix build errors when BLOCK=n
Grant Likely (2):
[POWERPC] mpc8349: Add linux,network-index to ethernet nodes in device tree
[POWERPC] mpc5200: Add cuimage support for mpc5200 boards
Hugh Dickins (1):
[POWERPC] ppc64: support CONFIG_DEBUG_PREEMPT
Ishizaki Kou (5):
[POWERPC] Celleb: Move pause, kexec_cpu_down to beat.c
[POWERPC] Celleb: Support for Power/Reset buttons
[POWERPC] Celleb: New HTAB Guest OS Interface on Beat
[POWERPC] Celleb: Serial I/O update
[POWERPC] Celleb: update for PCI
Jeremy Kerr (1):
[POWERPC] cell: Don't cast the result of of_get_property()
Joachim Fenkes (1):
[POWERPC] ibmebus: More descriptive error return code in ibmebus_store_probe()
Jochen Friedrich (4):
[POWERPC] Fix copy'n'paste typo in commproc.c
[PPC] Fix cpm_dpram_addr returning phys mem instead of virt mem
[PPC] Compile fix for 8xx CPM Ehernet driver
[POWERPC] Fix cpm_uart driver
Linas Vepstas (2):
[POWERPC] pseries: device node status can be "ok" or "okay"
[POWERPC] Use alloc_maybe_bootmem() in pcibios_alloc_controller
Mark A. Greer (1):
[POWERPC] MAINTAINERS shouldn't reference linuxppc-embedded
Mathieu Desnoyers (1):
[POWERPC] Include pagemap.h in asm/powerpc/tlb.h
Meelis Roos (1):
[POWERPC] Fix ppc kernels after build-id addition
Michael Ellerman (8):
[POWERPC] Make sure to of_node_get() the result of pci_device_to_OF_node()
[POWERPC] Simplify error logic in u3msi_setup_msi_irqs()
[POWERPC] Simplify error logic in rtas_setup_msi_irqs()
[POWERPC] Simplify rtas_change_msi() error semantics
[POWERPC] Inline u3msi_compose_msi_msg()
[POWERPC] Store the base address in dcr_host_t
[POWERPC] Update mpic to use dcr_host_t.base
[POWERPC] Update axon_msi to use dcr_host_t.base
Mike Frysinger (1):
[POWERPC] Use __attribute__ in asm-powerpc
Milton Miller (2):
[POWERPC] boot: Record header bytes in gunzip_start
[POWERPC] boot: Simplify gunzip_finish
Olof Johansson (2):
[POWERPC] Support setting affinity for U3/U4 MSI sources
[POWERPC] Separate out legacy machine check exception parsers
Paul Mackerras (1):
[POWERPC] Disable power management for arch/ppc
Robert P. J. Day (1):
[POWERPC] Prevent direct inclusion of <asm/rwsem.h>.
Roland McGrath (2):
[POWERPC] Add CHECK_FULL_REGS in several places in ptrace code
[POWERPC] powerpc vDSO: install unstripped copies on disk
Satyam Sharma (1):
[POWERPC] Avoid pointless WARN_ON(irqs_disabled()) from panic codepath
Scott Wood (3):
[POWERPC] bootwrapper: Factor out dt_set_mac_address()
[POWERPC] bootwrapper: Add PlanetCore firmware support
[POWERPC] Make instruction dumping work in real mode
Stephen Rothwell (5):
[POWERPC] Create and use CONFIG_WORD_SIZE
[POWERPC] Remove debug printk from vio_bus_init
[POWERPC] Simplify vio_bus_init a little for legacy iSeries
[POWERPC] Make vio_bus_type static
[POWERPC] Limit range of __init_ref_ok somewhat
Tony Breeds (6):
[POWERPC] Convert define_machine(mpc885_ads) to C99 initializer syntax
[POWERPC] Implement {read,update}_persistent_clock
[POWERPC] Implement generic time of day clocksource for powerpc
[POWERPC] Fix panic in RTAS code
[POWERPC] Implement clockevents driver for powerpc
[POWERPC] Enable tickless idle and high res timers for powerpc
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2007-10-03 13:41 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-22 9:47 Patches added to powerpc.git for-2.6.24 branch Paul Mackerras
2007-08-22 12:44 ` Timur Tabi
2007-08-22 14:03 ` Kumar Gala
2007-08-22 14:22 ` Timur Tabi
2007-08-22 13:25 ` Kumar Gala
2007-08-22 14:59 ` Kumar Gala
2007-08-22 22:39 ` Arnd Bergmann
2007-08-22 23:28 ` Kumar Gala
-- strict thread matches above, loose matches on Subject: below --
2007-09-13 17:53 Paul Mackerras
2007-09-14 1:43 ` Michael Neuling
2007-09-20 1:42 Paul Mackerras
2007-09-20 2:52 ` Jeremy Kerr
2007-09-20 15:13 ` Kumar Gala
2007-10-03 6:27 Paul Mackerras
2007-10-03 7:15 ` Stephen Rothwell
2007-10-03 8:12 ` Stephen Rothwell
2007-10-03 13:41 ` Kumar Gala
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).