From: Paul M. <le...@li...> - 2006-12-01 09:33:03
|
As 2.6.19 is now out, it's time to start thinking about what needs to go in during the 2.6.20-rc1 merge window. But first, there are some preliminary patches for kprobes and lockdep support, but these are going to need quite a bit more work, and these can be added in later, too. Given that, I've left them out of the initial queue. If anyone has new boards or CPUs that they'd like to see in 2.6.20, now would be the time to seriously consider submitting patches. I've also got some pending rework of the TMU code, and a lot of the PCI host controllers. While these aren't reflected in the queue at the moment, I anticipate they'll be completed and pushed out before the window closes. Having said that, the queue at the moment is as follows: Mark Glaisher (1): sh: dma-api channel capability extensions. Paul Mundt (22): sh: SE7206 build fixes. sh: Fixup entry-common path breakage for SH-3. sh: Configurable timer IRQ. sh: Drop CPU subtype IRQ headers. sh: Hook SH7785 in to the build system. sh: Preliminary support for SH-X2 MMU. sh: p3map_sem sem2mutex conversion. sh: Explicit endian selection support. sh: generic push-switch framework. sh: R7780RP push-switch support. sh: dma-sysfs fixes. sh: Make dma-isa depend on ISA_DMA_API. sh: Drop name overload in dma-sh. sh: Fixup 4K irq stacks. sh: Fixup various PAGE_SIZE == 4096 assumptions. sh: More flexible + SH7780 earlyprintk SCIF support. sh: Fix store queue bitmap end. sh: Get the PGD right in oops case with 64-bit PTEs. sh: Turn off IRQs around get_timer_offset() calls. sh: Clock framework tidying. sh: dyntick infrastructure. sh: Fixup movli.l/movco.l atomic ops for gcc4. Stuart Menefy (7): sh: gcc4 support. sh: Set up correct siginfo structures for page faults. sh: Use MMU.TTB register as pointer to current pgd. sh: pmd rework. sh: TLB miss fast-path optimizations. sh: KSTK_EIP/KSTK_ESP consistency. sh: Fix syscall tracing ordering. Yoshinori Sato (5): sh: Add support for SH7206 and SH7619 CPU subtypes. sh: Wire up division and address error exceptions on SH-2A. sh: Exception vector rework and SH-2/SH-2A support. sh: Add SH-2A platform headers. sh: Add support for Solution Engine 7206 and 7619 boards. arch/sh/Kconfig | 89 +++ arch/sh/Kconfig.debug | 18 arch/sh/Makefile | 22 arch/sh/boards/renesas/r7780rp/Makefile | 4 arch/sh/boards/renesas/r7780rp/irq.c | 1 arch/sh/boards/renesas/r7780rp/psw.c | 122 ++++ arch/sh/boards/se/7206/Makefile | 7 arch/sh/boards/se/7206/io.c | 123 ++++ arch/sh/boards/se/7206/irq.c | 139 +++++ arch/sh/boards/se/7206/led.c | 57 ++ arch/sh/boards/se/7206/setup.c | 79 ++ arch/sh/boards/se/7619/Makefile | 5 arch/sh/boards/se/7619/io.c | 102 +++ arch/sh/boards/se/7619/setup.c | 43 + arch/sh/boot/compressed/misc.c | 3 arch/sh/configs/se7206_defconfig | 826 +++++++++++++++++++++++++++++++ arch/sh/drivers/Kconfig | 9 arch/sh/drivers/Makefile | 2 arch/sh/drivers/dma/Makefile | 4 arch/sh/drivers/dma/dma-api.c | 274 +++++++--- arch/sh/drivers/dma/dma-sh.c | 9 arch/sh/drivers/dma/dma-sysfs.c | 23 arch/sh/drivers/pci/pci-sh7780.c | 14 arch/sh/drivers/push-switch.c | 138 +++++ arch/sh/kernel/Makefile | 2 arch/sh/kernel/cpu/Makefile | 11 arch/sh/kernel/cpu/clock.c | 27 - arch/sh/kernel/cpu/init.c | 2 arch/sh/kernel/cpu/irq/imask.c | 5 arch/sh/kernel/cpu/irq/intc2.c | 25 arch/sh/kernel/cpu/irq/ipr.c | 22 arch/sh/kernel/cpu/sh2/Makefile | 3 arch/sh/kernel/cpu/sh2/clock-sh7619.c | 81 +++ arch/sh/kernel/cpu/sh2/entry.S | 325 ++++++++++++ arch/sh/kernel/cpu/sh2/ex.S | 46 + arch/sh/kernel/cpu/sh2/probe.c | 16 arch/sh/kernel/cpu/sh2/setup-sh7619.c | 53 ++ arch/sh/kernel/cpu/sh2a/Makefile | 10 arch/sh/kernel/cpu/sh2a/clock-sh7206.c | 85 +++ arch/sh/kernel/cpu/sh2a/probe.c | 39 + arch/sh/kernel/cpu/sh2a/setup-sh7206.c | 58 ++ arch/sh/kernel/cpu/sh3/Makefile | 2 arch/sh/kernel/cpu/sh3/clock-sh7709.c | 2 arch/sh/kernel/cpu/sh3/entry.S | 693 ++++++++++++++++++++++++++ arch/sh/kernel/cpu/sh4/Makefile | 3 arch/sh/kernel/cpu/sh4/clock-sh4-202.c | 4 arch/sh/kernel/cpu/sh4/clock-sh7780.c | 2 arch/sh/kernel/cpu/sh4/fpu.c | 25 arch/sh/kernel/cpu/sh4/probe.c | 19 arch/sh/kernel/cpu/sh4/setup-sh7780.c | 36 - arch/sh/kernel/cpu/sh4/sq.c | 11 arch/sh/kernel/early_printk.c | 44 - arch/sh/kernel/entry-common.S | 371 ++++++++++++++ arch/sh/kernel/entry.S | 843 -------------------------------- arch/sh/kernel/head.S | 17 arch/sh/kernel/irq.c | 30 - arch/sh/kernel/process.c | 32 - arch/sh/kernel/relocate_kernel.S | 14 arch/sh/kernel/setup.c | 2 arch/sh/kernel/sh_ksyms.c | 2 arch/sh/kernel/signal.c | 36 - arch/sh/kernel/sys_sh.c | 7 arch/sh/kernel/time.c | 137 +++++ arch/sh/kernel/timers/Makefile | 2 arch/sh/kernel/timers/timer-cmt.c | 196 +++++++ arch/sh/kernel/timers/timer-mtu2.c | 200 +++++++ arch/sh/kernel/timers/timer-tmu.c | 13 arch/sh/kernel/timers/timer.c | 6 arch/sh/kernel/traps.c | 194 +++++-- arch/sh/mm/Kconfig | 72 ++ arch/sh/mm/cache-sh2.c | 69 +- arch/sh/mm/cache-sh4.c | 18 arch/sh/mm/clear_page.S | 18 arch/sh/mm/copy_page.S | 16 arch/sh/mm/fault.c | 158 ++--- arch/sh/mm/init.c | 45 - arch/sh/mm/ioremap.c | 4 arch/sh/mm/pg-dma.c | 2 arch/sh/mm/pg-sh4.c | 35 - arch/sh/tools/mach-types | 2 drivers/serial/sh-sci.c | 6 drivers/serial/sh-sci.h | 37 + include/asm-sh/atomic.h | 48 - include/asm-sh/bugs.h | 8 include/asm-sh/clock.h | 12 include/asm-sh/cpu-sh2/cache.h | 22 include/asm-sh/cpu-sh2/freq.h | 18 include/asm-sh/cpu-sh2/mmu_context.h | 16 include/asm-sh/cpu-sh2/timer.h | 6 include/asm-sh/cpu-sh2a/addrspace.h | 1 include/asm-sh/cpu-sh2a/cache.h | 39 + include/asm-sh/cpu-sh2a/cacheflush.h | 1 include/asm-sh/cpu-sh2a/dma.h | 1 include/asm-sh/cpu-sh2a/freq.h | 18 include/asm-sh/cpu-sh2a/mmu_context.h | 1 include/asm-sh/cpu-sh2a/timer.h | 1 include/asm-sh/cpu-sh2a/ubc.h | 1 include/asm-sh/cpu-sh2a/watchdog.h | 1 include/asm-sh/dma.h | 40 + include/asm-sh/elf.h | 2 include/asm-sh/entry-macros.S | 33 + include/asm-sh/irq-sh73180.h | 314 ----------- include/asm-sh/irq-sh7343.h | 317 ------------ include/asm-sh/irq-sh7780.h | 311 ----------- include/asm-sh/irq.h | 592 ---------------------- include/asm-sh/mmu_context.h | 44 - include/asm-sh/page.h | 35 + include/asm-sh/pgalloc.h | 20 include/asm-sh/pgtable-2level.h | 70 -- include/asm-sh/pgtable.h | 363 ++++++++++--- include/asm-sh/processor.h | 24 include/asm-sh/push-switch.h | 28 + include/asm-sh/se7206.h | 13 include/asm-sh/thread_info.h | 8 include/asm-sh/timer.h | 23 include/asm-sh/unistd.h | 32 - 116 files changed, 5614 insertions(+), 3197 deletions(-) |
From: Paul M. <le...@li...> - 2007-04-24 05:28:00
|
This is just a quick breakdown on what's in the 2.6.22 merge window queue so far. Most of this has been out in the staging tree in git for some time already, so there shouldn't be any real surprises. There's still some kprobes, X2 TLB work, and hrtimer stuff that hasn't been merged yet, and given that those are quite isolated, those might show up for -rc2. Changes are scattered. A number of new boards have been added, others have been updated, basic kgdb was resurrected, and SH7722 got clock framework support. As per some of the noise on l-k regarding udivdi3 wrapping (to div64_32 in the sh case), that's been ripped out too. We don't seem to have anything that emits it in-tree anyways, so there's not a lot of point in dragging it around. Those with out-of-tree users will need to do_div() explicitly. Kristoffer Ericson (2): sh: hp6xx driver compile fixes. sh: hp6xx pata_platform support. Nobuhiro Iwamatsu (6): sh: pata_platform pcmcia support for SolutionEngine boards. sh: L-BOX RE2 support. sh: MS7712SE01 board support. sh: Add defconfig for se7712. sh: SH7780 Solution Engine board support. sh: se7780 PCI support. Paul Mundt (14): sh: Bring kgdb back from the dead. sh: Rip out broken kgdb thread support. sh: speculative execution support for SH7780. sh: generic BUG() support. sh: NR_IRQS consolidation. sh: Add SH7785 Highlander board support (R7785RP). serial: sh-sci: Kill off breakpoint in break IRQ. doc: Update sysrq doc for sh kgdb trigger. sh: bootmem tidying for discontig/sparsemem preparation. sh: Kill off udivdi3 div64_32 wrapping. sh: Add defconfig for se7722. sh: Tidy up L-BOX area5 addresses. sh: Add a dummy SH-4 PCIC fixup. sh: Obey CONFIG_HZ for HZ definition. SUGIOKA Toshinobu (1): sh: Fix fstatat64() syscall. Takashi YOSHII (1): sh: heartbeat double 0 fix. dmitry pervushin (2): sh: SH7722 clock framework support. serial: sh-sci: Fix module clock refcounting. kogiidena (1): sh: landisk updates. Documentation/sh/clk.txt | 32 + Documentation/sysrq.txt | 4 +- arch/sh/Kconfig | 75 +- arch/sh/Kconfig.debug | 20 +- arch/sh/Makefile | 5 +- arch/sh/boards/hp6xx/setup.c | 67 +- arch/sh/boards/landisk/Makefile | 2 +- arch/sh/boards/landisk/gio.c | 167 ++++ arch/sh/boards/landisk/io.c | 250 ----- arch/sh/boards/landisk/irq.c | 83 +-- arch/sh/boards/landisk/landisk_pwb.c | 346 ------- arch/sh/boards/landisk/psw.c | 143 +++ arch/sh/boards/landisk/rtc.c | 91 -- arch/sh/boards/landisk/setup.c | 163 +--- arch/sh/boards/lboxre2/Makefile | 5 + arch/sh/boards/lboxre2/irq.c | 31 + arch/sh/boards/lboxre2/setup.c | 85 ++ arch/sh/boards/renesas/r7780rp/Kconfig | 18 +- arch/sh/boards/renesas/r7780rp/Makefile | 6 +- arch/sh/boards/renesas/r7780rp/irq-r7780rp.c | 21 + arch/sh/boards/renesas/r7780rp/irq-r7785rp.c | 29 + arch/sh/boards/renesas/r7780rp/irq.c | 25 +- arch/sh/boards/renesas/r7780rp/setup.c | 74 +- arch/sh/boards/se/770x/io.c | 2 + arch/sh/boards/se/770x/irq.c | 27 +- arch/sh/boards/se/770x/setup.c | 30 +- arch/sh/boards/se/7751/setup.c | 148 --- arch/sh/boards/se/7780/Makefile | 10 + arch/sh/boards/se/7780/irq.c | 89 ++ arch/sh/boards/se/7780/setup.c | 122 +++ arch/sh/configs/lboxre2_defconfig | 1271 ++++++++++++++++++++++++ arch/sh/configs/r7785rp_defconfig | 1334 ++++++++++++++++++++++++++ arch/sh/configs/se7712_defconfig | 1088 +++++++++++++++++++++ arch/sh/configs/se7722_defconfig | 945 ++++++++++++++++++ arch/sh/configs/se7780_defconfig | 1309 +++++++++++++++++++++++++ arch/sh/drivers/Kconfig | 10 + arch/sh/drivers/heartbeat.c | 13 +- arch/sh/drivers/pci/Makefile | 5 +- arch/sh/drivers/pci/fixups-lboxre2.c | 41 + arch/sh/drivers/pci/fixups-se7780.c | 60 ++ arch/sh/drivers/pci/ops-landisk.c | 4 +- arch/sh/drivers/pci/ops-lboxre2.c | 63 ++ arch/sh/drivers/pci/ops-r7780rp.c | 37 +- arch/sh/drivers/pci/ops-se7780.c | 96 ++ arch/sh/drivers/pci/ops-sh4.c | 6 + arch/sh/drivers/pci/pci-sh4.h | 2 +- arch/sh/drivers/pci/pci-sh7751.c | 15 +- arch/sh/drivers/pci/pci-sh7780.c | 45 +- arch/sh/drivers/pci/pci-sh7780.h | 19 +- arch/sh/kernel/cpu/clock.c | 28 +- arch/sh/kernel/cpu/init.c | 19 + arch/sh/kernel/cpu/irq/intc2.c | 3 +- arch/sh/kernel/cpu/sh3/Makefile | 1 + arch/sh/kernel/cpu/sh3/probe.c | 3 + arch/sh/kernel/cpu/sh3/setup-sh7710.c | 60 ++ arch/sh/kernel/cpu/sh4/clock-sh4-202.c | 3 +- arch/sh/kernel/cpu/sh4/probe.c | 8 + arch/sh/kernel/cpu/sh4a/Makefile | 4 +- arch/sh/kernel/cpu/sh4a/clock-sh7722.c | 600 ++++++++++++ arch/sh/kernel/cpu/sh4a/clock-sh7785.c | 162 ++++ arch/sh/kernel/cpu/sh4a/setup-sh7785.c | 98 ++ arch/sh/kernel/irq.c | 5 +- arch/sh/kernel/kgdb_stub.c | 490 ++--------- arch/sh/kernel/process.c | 3 +- arch/sh/kernel/setup.c | 259 ++---- arch/sh/kernel/sh_ksyms.c | 1 - arch/sh/kernel/timers/timer-tmu.c | 4 +- arch/sh/kernel/traps.c | 54 +- arch/sh/kernel/vmlinux.lds.S | 47 +- arch/sh/lib/Makefile | 3 +- arch/sh/lib/udivdi3.c | 16 - arch/sh/mm/Kconfig | 19 + arch/sh/mm/init.c | 197 ++-- arch/sh/tools/mach-types | 2 + drivers/input/touchscreen/hp680_ts_input.c | 2 +- drivers/serial/sh-sci.c | 102 ++- drivers/serial/sh-sci.h | 83 ++- include/asm-sh/bug.h | 92 ++- include/asm-sh/clock.h | 32 +- include/asm-sh/cpu-sh3/mmu_context.h | 1 + include/asm-sh/cpu-sh4/freq.h | 8 + include/asm-sh/irq.h | 91 +-- include/asm-sh/kgdb.h | 51 +- include/asm-sh/lboxre2.h | 27 + include/asm-sh/mmu_context.h | 6 +- include/asm-sh/page.h | 10 +- include/asm-sh/param.h | 2 +- include/asm-sh/pci.h | 2 +- include/asm-sh/processor.h | 2 +- include/asm-sh/r7780rp.h | 68 +- include/asm-sh/se.h | 1 + include/asm-sh/se7751.h | 2 + include/asm-sh/se7780.h | 108 +++ include/asm-sh/stat.h | 19 +- sound/oss/sh_dac_audio.c | 2 +- 95 files changed, 9059 insertions(+), 2274 deletions(-) |
From: Paul M. <le...@li...> - 2007-09-14 03:53:14
|
With the 2.6.24 merge window not far off, it's time to review some of the stuff that's sitting in the queue. Most of it is uneventful stuff, lots of build fixes now that allmodconfig and randconfigs are supportable, the usual batch of board updates (hp6xx, r2d, and highlander especially), new CPU support (SH7720), and new board support (Magic Panel R2 and the SH-X3 proto board). The most amount of churn is caused by the INTC code from Magnus, and subsequent updating of every functional in-tree CPU subtype. And finally, there's also more SH-X3 stuff. SMP refactoring, wiring up more NUMA nodes, things of that nature. Most of this has been sitting in -mm for quite some time already, so there shouldn't be any surprises here. There's likely some more SMP stuff that will be checked in before the queue is closed completely, but this is quite isolated and won't impact any of the other platforms. Adrian McMenamin (1): fb: pvr2fb: Shared IRQ for dreamcast pvr2. Kristoffer Ericson (9): sh: Fix OFFCHIP_IRQ_BASE compile error. sh: update hp6xx defconfig. sh: hp6xx: APM build fix and new battery values. backlight: Fix up hp680_bl build. sh: hd64461: Trivial build fixes for SH7709. sh: dma: Fix up build for SH7709 support. sh: hp6xx: Update CF IRQ for INTC changes. sh: hp6xx: Enable touchscreen and powerbutton IRQs. sh: hp6xx: Enable pata_platform in defconfig. Magnus Damm (33): sh: intc - add support for SH7705 sh: intc - add support for SH7710 sh: intc - add support for SH7706, SH7707, SH7708, SH7709 sh: intc - add missing vectors for SH7707 sh: intc - avoid SH7710 specific vector on SH7712 sh: intc - add support for SH7785 sh: intc - add support for SH7760 sh: simplify se7780 IRQ code sh: intc - fix IRQ4 and IRQ5 typo on sh3 sh: intc - add support for x3 sh: intc - remove redundant irq code for sh03, snapgear and titan sh: intc - remove redundant irq code for shmin sh: intc - add single bitmap register support sh: intc - convert voyagergx code sh: remove intc2 code sh: x3 - fix setup_bootmem_node() compile error with shx3_defconfig sh: intc - add a clear register to struct intc_prio_reg sh: intc - rework core code sh: intc - convert board specific r2d code sh: replace sh specific CONFIG_VOYAGERGX with CONFIG_MFD_SM501 sh: x3 - add ipi vectors sh: intc - mark data structures as __initdata sh: intc - primary priority masking fixes sh: fix irqs for the second serial port on sh7206 sh: intc - add support for sh7619 sh: intc - add support for sh7206 sh: defconfigs for R2D-PLUS and for R2D-1 sh: remove CONFIG_CPU_HAS_INTC_IRQ sh: intc - irl mode update for sh7780 and sh7785 sh: minor fixes sh: intc - rework higlander irq code for r7780mp and r7785rp sh: remove sh7780 interrupt controller hack from pci code sh: add writesb(), readsb(), writesw() and readsw() to io.h Markus Brunner (3): sh: Add gpio.h stubs for PFC definitions. sh: Add SH7720 CPU support. sh: Magic Panel R2 board support. Paul Mundt (30): sh: Support explicit L1 cache disabling. sh: Fix cache disabling build failures on nommu. sh: Initial multiple-node support for SH-X3. rtc: rtc-sh: Support 4-digit year on SH7705/SH7710/SH7712. sh: intc: Fix sense regs oops for IRL IRQs. sh: Plug in SH-X3 SCIF0 for sercon earlyprintk. sh: Initial support for SH-X3 prototype board. sh: x3proto: ILSEL IRQ support. sh: x3proto: Hook up ethernet and USB platform devices. sh: x3proto: Trivial ILSEL build fix. sh: Bump up NODES_SHIFT for SH-X3. serial: sh-sci: Shut up compiler warning for SH-X3 SCIF. sh: Wire up CSM node for SH-X3. serial: sh-sci: Tidy cpufreq printk. sh: Kill off duplicate symbol exports on SMP. sh: heartbeat driver update. sh: More license string silliness. sh: Kill off volatile silliness in sq_flush_range(). sh: Overhaul spinlocks and rwlocks for SH-4A SMP. sh: Fix up heartbeat build and resource size. sh: Fix up se7751 build. sh: nommu fault handler needs signal.h. serial: sh-sci: kgdb console build fixes. sh: INTC stubs for SH7343 and SH7770 builds. sh: dma: Fix CONFIG_SYSFS=n build. sh: Don't enable FPU for SH4AL-DSP. sh: se7206: Make the I/O port routines less stupid. sh: se7206: heartbeat needs 32-bit writes. sh: hp6xx: Trivial build fixes for INTC changes. sh: r7780rp: irq-r7780rp needs linux/io.h. arch/sh/Kconfig | 25 arch/sh/Kconfig.debug | 6 arch/sh/Makefile | 4 arch/sh/boards/hp6xx/hp6xx_apm.c | 9 arch/sh/boards/hp6xx/setup.c | 35 arch/sh/boards/magicpanelr2/Kconfig | 13 arch/sh/boards/magicpanelr2/Makefile | 5 arch/sh/boards/magicpanelr2/setup.c | 312 ++++++ arch/sh/boards/mpc1211/setup.c | 2 arch/sh/boards/renesas/r7780rp/Makefile | 5 arch/sh/boards/renesas/r7780rp/irq-r7780mp.c | 61 + arch/sh/boards/renesas/r7780rp/irq-r7780rp.c | 6 arch/sh/boards/renesas/r7780rp/irq-r7785rp.c | 46 arch/sh/boards/renesas/r7780rp/setup.c | 70 + arch/sh/boards/renesas/rts7751r2d/Kconfig | 24 arch/sh/boards/renesas/rts7751r2d/irq.c | 176 ++- arch/sh/boards/renesas/rts7751r2d/setup.c | 52 - arch/sh/boards/renesas/x3proto/Makefile | 1 arch/sh/boards/renesas/x3proto/ilsel.c | 151 +++ arch/sh/boards/renesas/x3proto/setup.c | 136 ++ arch/sh/boards/se/7206/io.c | 29 arch/sh/boards/se/7206/setup.c | 19 arch/sh/boards/se/7343/setup.c | 2 arch/sh/boards/se/770x/setup.c | 10 arch/sh/boards/se/7722/setup.c | 9 arch/sh/boards/se/7751/setup.c | 11 arch/sh/boards/se/7780/irq.c | 28 arch/sh/boards/se/7780/setup.c | 7 arch/sh/boards/sh03/setup.c | 28 arch/sh/boards/shmin/setup.c | 26 arch/sh/boards/snapgear/setup.c | 30 arch/sh/boards/titan/setup.c | 30 arch/sh/cchips/Kconfig | 13 arch/sh/cchips/hd6446x/hd64461.c | 6 arch/sh/cchips/voyagergx/irq.c | 188 +-- arch/sh/configs/hp6xx_defconfig | 559 +++++------ arch/sh/configs/magicpanelr2_defconfig | 923 ++++++++++++++++++ arch/sh/configs/rts7751r2d1_defconfig | 1167 +++++++++++++++++++++++ arch/sh/configs/rts7751r2d_defconfig | 1353 --------------------------- arch/sh/configs/rts7751r2dplus_defconfig | 1167 +++++++++++++++++++++++ arch/sh/drivers/dma/Kconfig | 1 arch/sh/drivers/dma/dma-sh.c | 13 arch/sh/drivers/heartbeat.c | 70 + arch/sh/drivers/pci/ops-rts7751r2d.c | 8 arch/sh/drivers/pci/pci-sh7780.c | 13 arch/sh/drivers/push-switch.c | 2 arch/sh/kernel/cpu/init.c | 11 arch/sh/kernel/cpu/irq/Makefile | 4 arch/sh/kernel/cpu/irq/intc.c | 524 +++++++--- arch/sh/kernel/cpu/irq/intc2.c | 86 - arch/sh/kernel/cpu/sh2/setup-sh7619.c | 93 + arch/sh/kernel/cpu/sh2a/setup-sh7206.c | 217 +++- arch/sh/kernel/cpu/sh3/Makefile | 10 arch/sh/kernel/cpu/sh3/probe.c | 3 arch/sh/kernel/cpu/sh3/setup-sh7705.c | 172 ++- arch/sh/kernel/cpu/sh3/setup-sh7708.c | 43 arch/sh/kernel/cpu/sh3/setup-sh7709.c | 145 -- arch/sh/kernel/cpu/sh3/setup-sh770x.c | 224 ++++ arch/sh/kernel/cpu/sh3/setup-sh7710.c | 200 ++- arch/sh/kernel/cpu/sh3/setup-sh7720.c | 210 ++++ arch/sh/kernel/cpu/sh4/setup-sh7750.c | 54 - arch/sh/kernel/cpu/sh4/setup-sh7760.c | 253 ++--- arch/sh/kernel/cpu/sh4/sq.c | 4 arch/sh/kernel/cpu/sh4a/setup-sh7343.c | 4 arch/sh/kernel/cpu/sh4a/setup-sh7722.c | 38 arch/sh/kernel/cpu/sh4a/setup-sh7770.c | 4 arch/sh/kernel/cpu/sh4a/setup-sh7780.c | 91 + arch/sh/kernel/cpu/sh4a/setup-sh7785.c | 300 +++++ arch/sh/kernel/cpu/sh4a/setup-shx3.c | 234 ++++ arch/sh/kernel/early_printk.c | 38 arch/sh/kernel/setup.c | 2 arch/sh/kernel/sh_ksyms.c | 14 arch/sh/kernel/timers/timer-tmu.c | 3 arch/sh/mm/Kconfig | 51 - arch/sh/mm/Makefile | 21 arch/sh/mm/cache-debugfs.c | 2 arch/sh/mm/fault-nommu.c | 1 arch/sh/mm/pmb.c | 2 arch/sh/mm/tlb-sh4.c | 25 drivers/rtc/rtc-sh.c | 51 - drivers/serial/sh-sci.c | 39 drivers/serial/sh-sci.h | 34 drivers/video/backlight/hp680_bl.c | 4 drivers/video/pvr2fb.c | 2 include/asm-sh/cacheflush.h | 33 include/asm-sh/cpu-sh3/cache.h | 4 include/asm-sh/cpu-sh3/dma.h | 13 include/asm-sh/cpu-sh3/gpio.h | 66 + include/asm-sh/cpu-sh3/mmu_context.h | 9 include/asm-sh/cpu-sh3/timer.h | 9 include/asm-sh/cpu-sh3/ubc.h | 3 include/asm-sh/dma.h | 5 include/asm-sh/gpio.h | 19 include/asm-sh/hd64461.h | 1 include/asm-sh/heartbeat.h | 17 include/asm-sh/hw_irq.h | 41 include/asm-sh/ilsel.h | 45 include/asm-sh/io.h | 26 include/asm-sh/magicpanelr2.h | 67 + include/asm-sh/page.h | 6 include/asm-sh/pgtable.h | 3 include/asm-sh/processor.h | 2 include/asm-sh/r7780rp.h | 33 include/asm-sh/rtc.h | 6 include/asm-sh/rts7751r2d.h | 65 - include/asm-sh/sh03/io.h | 9 include/asm-sh/snapgear.h | 12 include/asm-sh/spinlock.h | 181 ++- include/asm-sh/spinlock_types.h | 11 include/asm-sh/voyagergx.h | 39 include/asm-sh64/gpio.h | 8 111 files changed, 7506 insertions(+), 3291 deletions(-) |
From: Paul M. <le...@li...> - 2007-09-14 04:15:04
|
On Fri, Sep 14, 2007 at 12:52:58PM +0900, Paul Mundt wrote: > With the 2.6.24 merge window not far off, it's time to review some of the > stuff that's sitting in the queue. Most of it is uneventful stuff, lots > of build fixes now that allmodconfig and randconfigs are supportable, the > usual batch of board updates (hp6xx, r2d, and highlander especially), new > CPU support (SH7720), and new board support (Magic Panel R2 and the SH-X3 > proto board). > This also signifies the end of my post-kernel summit inboux scouring. So if your patch isn't in the queue, I've probably forgotten about it or missed it. Feel free to re-submit anything that got overlooked. |