* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
@ 2011-03-11 20:18 Linus Walleij
2011-03-13 21:48 ` Russell King - ARM Linux
0 siblings, 1 reply; 7+ messages in thread
From: Linus Walleij @ 2011-03-11 20:18 UTC (permalink / raw)
To: linux-arm-kernel
Hi Russell,
if your harddrive is feeling better could you please pull:
git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
for-rmk
Based on commit dd9c1549edef02290edced639f67b54a25abbe0e:
Linux 2.6.38-rc7 (2011-03-01 13:55:12 -0800)
For this set of patches that in short contain:
- Numerous Nomadik GPIO pin updates for advaced stuff like
power management
- Platform configuration of MUSB for ux500
- Many platform data updates and refactorings, completing
the work to have a single kernel booting across all the
ux500 board variants.
All have been reviewed on the list before.
Three of these patches may be duplicates of patches
already merged in your tree:
ARM: 6644/1: mach-ux500: update the U8500 defconfig
ARM: perf_event: allow platform-specific interrupt handler
mach-ux500: DB8500 PMU support
If you prefer me to base the pull tag on something else than
-rc7 then tell me and I'll fix.
Bibek Basu (1):
mach-ux500: add hrefv60 GPIO pins
Jonas Aaberg (1):
plat-nomadik: pull-up/down settings for GPIO resume
Lee Jones (1):
mach-ux500: Add Rohm BH1780GLI Light Sensor to i2c_board_info
Linus Walleij (11):
ARM: 6644/1: mach-ux500: update the U8500 defconfig
mach-ux500: add DB5500 PMU resources
mach-ux500: add a few AB8500 regulator consumers v3
mach-ux500: delete old keypad board file
mach-u300: use mmci driver for GPIO card detect
mach-u300: config U300 PL180 PL011 PL022 for DMA
mach-ux500: config Ux500 PL011 PL022 PL180 for DMA
plat-nomadik: fix compilation warning
mach-ux500: basic HREFv60 support v2
mach-ux500: activate USB in the U8500 defconfig
mach-u300: define a dummy filter function for coh901318
Mian Yousaf Kaukab (4):
mach-ux500: add platform data for musb
mach-ux500: update MUSB clock configurations
mach-ux500: add MUSB to db8500 devices
mach-ux500: add MUSB to db5500 devices
Philippe Langlais (4):
mach-ux500: platform data for SFH7741 proximity sensor driver
mach-ux500: platform data for LP5521 leds driver
mach-ux500: set sd/mmc clock rate to 100MHz
mach-ux500: fix inverted SD-card GPIO pin
Rabin Vincent (12):
ARM: perf_event: allow platform-specific interrupt handler
mach-ux500: DB8500 PMU support
mach-ux500: dynamic UIB (user interface boards) detection
plat-nomadik: support varying number of GPIOs per block
plat-nomadik: add custom dbg_show for GPIO
plat-nomadik: implement suspend/resume for GPIO
plat-nomadik: support secondary GPIO interrupts
plat-nomadik: set altfunc to GPIO when enabling the sleep config
plat-nomadik: implement safe switch sequence for Alt-C
plat-nomadik: get rid of unused GPIO PM code
mach-ux500: move MOP500 pins to separate file
plat-nomadik: make GPIO interrupts work with cpuidle ApSleep
Rikard Olsson (1):
plat-nomadik: change sleep/wakeup setting in GPIO SLPM register
Sundar Iyer (3):
mach-ux500: fix ux500 build error
mach-ux500: add ST-UIB platform data
mach-ux500: add U8500 UIB platform data
Virupax Sadashivpetimath (1):
plat-nomadik: type secondary IRQ correctly
arch/arm/configs/u8500_defconfig | 65 +++-
arch/arm/include/asm/pmu.h | 14 +
arch/arm/kernel/perf_event.c | 17 +-
arch/arm/mach-u300/core.c | 179 ++++++++-
arch/arm/mach-u300/include/mach/coh901318.h | 7 +
arch/arm/mach-u300/mmc.c | 160 ++-------
arch/arm/mach-u300/spi.c | 21 +-
arch/arm/mach-ux500/Makefile | 8 +-
arch/arm/mach-ux500/board-mop500-keypads.c | 229 ------------
arch/arm/mach-ux500/board-mop500-pins.c | 241 ++++++++++++
arch/arm/mach-ux500/board-mop500-regulators.c | 62 ++++
arch/arm/mach-ux500/board-mop500-sdi.c | 184 ++++++----
arch/arm/mach-ux500/board-mop500-stuib.c | 205 +++++++++++
arch/arm/mach-ux500/board-mop500-u8500uib.c | 111 ++++++
arch/arm/mach-ux500/board-mop500-uib.c | 135 +++++++
arch/arm/mach-ux500/board-mop500.c | 328 ++++++++++++++----
arch/arm/mach-ux500/board-mop500.h | 25 ++-
arch/arm/mach-ux500/board-u5500-sdi.c | 25 ++
arch/arm/mach-ux500/board-u5500.c | 6 +-
arch/arm/mach-ux500/clock.c | 6 +-
arch/arm/mach-ux500/cpu-db5500.c | 53 +++-
arch/arm/mach-ux500/cpu-db8500.c | 76 ++++-
arch/arm/mach-ux500/devices-common.c | 1 +
arch/arm/mach-ux500/devices-common.h | 7 +-
arch/arm/mach-ux500/devices-db5500.h | 19 +-
arch/arm/mach-ux500/devices-db8500.c | 67 ++++-
arch/arm/mach-ux500/devices-db8500.h | 15 +-
arch/arm/mach-ux500/dma-db5500.c | 16 +
arch/arm/mach-ux500/include/mach/uncompress.h | 6 +-
arch/arm/mach-ux500/include/mach/usb.h | 25 ++
arch/arm/mach-ux500/usb.c | 160 ++++++++
arch/arm/plat-nomadik/gpio.c | 487 +++++++++++++++++++++----
arch/arm/plat-nomadik/include/plat/gpio.h | 6 +
33 files changed, 2325 insertions(+), 641 deletions(-)
delete mode 100644 arch/arm/mach-ux500/board-mop500-keypads.c
create mode 100644 arch/arm/mach-ux500/board-mop500-pins.c
create mode 100644 arch/arm/mach-ux500/board-mop500-stuib.c
create mode 100644 arch/arm/mach-ux500/board-mop500-u8500uib.c
create mode 100644 arch/arm/mach-ux500/board-mop500-uib.c
create mode 100644 arch/arm/mach-ux500/include/mach/usb.h
create mode 100644 arch/arm/mach-ux500/usb.c
Thanks,
Linus Walleij
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
2011-03-11 20:18 [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39 Linus Walleij
@ 2011-03-13 21:48 ` Russell King - ARM Linux
2011-03-14 11:22 ` Russell King - ARM Linux
2011-03-14 11:46 ` Linus Walleij
0 siblings, 2 replies; 7+ messages in thread
From: Russell King - ARM Linux @ 2011-03-13 21:48 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Mar 11, 2011 at 09:18:43PM +0100, Linus Walleij wrote:
> Hi Russell,
>
> if your harddrive is feeling better could you please pull:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
> for-rmk
>
> Based on commit dd9c1549edef02290edced639f67b54a25abbe0e:
> Linux 2.6.38-rc7 (2011-03-01 13:55:12 -0800)
>
> For this set of patches that in short contain:
> - Numerous Nomadik GPIO pin updates for advaced stuff like
> power management
> - Platform configuration of MUSB for ux500
> - Many platform data updates and refactorings, completing
> the work to have a single kernel booting across all the
> ux500 board variants.
>
> All have been reviewed on the list before.
> Three of these patches may be duplicates of patches
I'm not merging trees which duplicate the patches in my tree.
> already merged in your tree:
> ARM: 6644/1: mach-ux500: update the U8500 defconfig
> ARM: perf_event: allow platform-specific interrupt handler
> mach-ux500: DB8500 PMU support
This is annoying. These are spread across three entirely different
branches:
"ARM: 6644/1" is part of the defcfg branch.
"ARM: perf_event" is part of someone elses tree merged into devel-stable.
"mach-ux500:" is "ARM: 6776/1:" and is part of the ux500 branch.
I'm intending sending some of these branches as entirely separate pulls
to Linus - particularly the defconfig and devel-stable branches (so that
Linus can see what code outside arch/arm is being modified by other
people and target his complaints about that more appropriately).
Merging your tree is going to destroy my ability to keep this stuff
strictly separate.
I don't mind merging the ux500 branch into devel-stable provided you're
not going to send any further ux500 patches?
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
2011-03-13 21:48 ` Russell King - ARM Linux
@ 2011-03-14 11:22 ` Russell King - ARM Linux
2011-03-14 11:46 ` Linus Walleij
1 sibling, 0 replies; 7+ messages in thread
From: Russell King - ARM Linux @ 2011-03-14 11:22 UTC (permalink / raw)
To: linux-arm-kernel
On Sun, Mar 13, 2011 at 09:48:35PM +0000, Russell King - ARM Linux wrote:
> On Fri, Mar 11, 2011 at 09:18:43PM +0100, Linus Walleij wrote:
> > Hi Russell,
> >
> > if your harddrive is feeling better could you please pull:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
> > for-rmk
> >
> > Based on commit dd9c1549edef02290edced639f67b54a25abbe0e:
> > Linux 2.6.38-rc7 (2011-03-01 13:55:12 -0800)
> >
> > For this set of patches that in short contain:
> > - Numerous Nomadik GPIO pin updates for advaced stuff like
> > power management
> > - Platform configuration of MUSB for ux500
> > - Many platform data updates and refactorings, completing
> > the work to have a single kernel booting across all the
> > ux500 board variants.
> >
> > All have been reviewed on the list before.
> > Three of these patches may be duplicates of patches
>
> I'm not merging trees which duplicate the patches in my tree.
>
> > already merged in your tree:
> > ARM: 6644/1: mach-ux500: update the U8500 defconfig
> > ARM: perf_event: allow platform-specific interrupt handler
> > mach-ux500: DB8500 PMU support
>
> This is annoying. These are spread across three entirely different
> branches:
> "ARM: 6644/1" is part of the defcfg branch.
> "ARM: perf_event" is part of someone elses tree merged into devel-stable.
> "mach-ux500:" is "ARM: 6776/1:" and is part of the ux500 branch.
>
> I'm intending sending some of these branches as entirely separate pulls
> to Linus - particularly the defconfig and devel-stable branches (so that
> Linus can see what code outside arch/arm is being modified by other
> people and target his complaints about that more appropriately).
>
> Merging your tree is going to destroy my ability to keep this stuff
> strictly separate.
>
> I don't mind merging the ux500 branch into devel-stable provided you're
> not going to send any further ux500 patches?
Linus,
You may want to respond to this sooner rather than later (like today)
because we're getting really close to the merge window opening.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
2011-03-13 21:48 ` Russell King - ARM Linux
2011-03-14 11:22 ` Russell King - ARM Linux
@ 2011-03-14 11:46 ` Linus Walleij
2011-03-14 11:51 ` Russell King - ARM Linux
1 sibling, 1 reply; 7+ messages in thread
From: Linus Walleij @ 2011-03-14 11:46 UTC (permalink / raw)
To: linux-arm-kernel
On Sun, Mar 13, 2011 at 10:48 PM, Russell King - ARM Linux
<linux@arm.linux.org.uk> wrote:
> I'm intending sending some of these branches as entirely separate pulls
> to Linus - particularly the defconfig and devel-stable branches (so that
> Linus can see what code outside arch/arm is being modified by other
> people and target his complaints about that more appropriately).
>
> Merging your tree is going to destroy my ability to keep this stuff
> strictly separate.
Aha I get it... The defconfig can wait for sure.
> I don't mind merging the ux500 branch into devel-stable provided you're
> not going to send any further ux500 patches?
No hurries atleast. We have some minor drivers pending but I will request
subsystems to take the bulk of these drivers and have the platform data
come in the next merge window or directly to Torvalds.
I created a branch named "for-rmk-devel-stable" without the defconfig stuff,
that lands entirely inside the arch/arm/* tree, it duplicates the two PMU
patches and nothing else from your tree:
ARM: perf_event: allow platform-specific interrupt handler
mach-ux500: DB8500 PMU support
The following changes since commit dd9c1549edef02290edced639f67b54a25abbe0e:
Linux 2.6.38-rc7 (2011-03-01 13:55:12 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
for-rmk-devel-stable
Bibek Basu (1):
mach-ux500: add hrefv60 GPIO pins
Jonas Aaberg (1):
plat-nomadik: pull-up/down settings for GPIO resume
Lee Jones (1):
mach-ux500: Add Rohm BH1780GLI Light Sensor to i2c_board_info
Linus Walleij (9):
mach-ux500: add DB5500 PMU resources
mach-ux500: add a few AB8500 regulator consumers v3
mach-ux500: delete old keypad board file
mach-u300: use mmci driver for GPIO card detect
mach-u300: config U300 PL180 PL011 PL022 for DMA
mach-ux500: config Ux500 PL011 PL022 PL180 for DMA
plat-nomadik: fix compilation warning
mach-ux500: basic HREFv60 support v2
mach-u300: define a dummy filter function for coh901318
Mian Yousaf Kaukab (4):
mach-ux500: add platform data for musb
mach-ux500: update MUSB clock configurations
mach-ux500: add MUSB to db8500 devices
mach-ux500: add MUSB to db5500 devices
Philippe Langlais (4):
mach-ux500: platform data for SFH7741 proximity sensor driver
mach-ux500: platform data for LP5521 leds driver
mach-ux500: set sd/mmc clock rate to 100MHz
mach-ux500: fix inverted SD-card GPIO pin
Rabin Vincent (12):
ARM: perf_event: allow platform-specific interrupt handler
mach-ux500: DB8500 PMU support
mach-ux500: dynamic UIB (user interface boards) detection
plat-nomadik: support varying number of GPIOs per block
plat-nomadik: add custom dbg_show for GPIO
plat-nomadik: implement suspend/resume for GPIO
plat-nomadik: support secondary GPIO interrupts
plat-nomadik: set altfunc to GPIO when enabling the sleep config
plat-nomadik: implement safe switch sequence for Alt-C
plat-nomadik: get rid of unused GPIO PM code
mach-ux500: move MOP500 pins to separate file
plat-nomadik: make GPIO interrupts work with cpuidle ApSleep
Rikard Olsson (1):
plat-nomadik: change sleep/wakeup setting in GPIO SLPM register
Sundar Iyer (3):
mach-ux500: fix ux500 build error
mach-ux500: add ST-UIB platform data
mach-ux500: add U8500 UIB platform data
Virupax Sadashivpetimath (1):
plat-nomadik: type secondary IRQ correctly
arch/arm/include/asm/pmu.h | 14 +
arch/arm/kernel/perf_event.c | 17 +-
arch/arm/mach-u300/core.c | 179 ++++++++-
arch/arm/mach-u300/include/mach/coh901318.h | 7 +
arch/arm/mach-u300/mmc.c | 160 ++-------
arch/arm/mach-u300/spi.c | 21 +-
arch/arm/mach-ux500/Makefile | 8 +-
arch/arm/mach-ux500/board-mop500-keypads.c | 229 ------------
arch/arm/mach-ux500/board-mop500-pins.c | 241 ++++++++++++
arch/arm/mach-ux500/board-mop500-regulators.c | 62 ++++
arch/arm/mach-ux500/board-mop500-sdi.c | 184 ++++++----
arch/arm/mach-ux500/board-mop500-stuib.c | 205 +++++++++++
arch/arm/mach-ux500/board-mop500-u8500uib.c | 111 ++++++
arch/arm/mach-ux500/board-mop500-uib.c | 135 +++++++
arch/arm/mach-ux500/board-mop500.c | 328 ++++++++++++++----
arch/arm/mach-ux500/board-mop500.h | 25 ++-
arch/arm/mach-ux500/board-u5500-sdi.c | 25 ++
arch/arm/mach-ux500/board-u5500.c | 6 +-
arch/arm/mach-ux500/clock.c | 6 +-
arch/arm/mach-ux500/cpu-db5500.c | 53 +++-
arch/arm/mach-ux500/cpu-db8500.c | 76 ++++-
arch/arm/mach-ux500/devices-common.c | 1 +
arch/arm/mach-ux500/devices-common.h | 7 +-
arch/arm/mach-ux500/devices-db5500.h | 19 +-
arch/arm/mach-ux500/devices-db8500.c | 67 ++++-
arch/arm/mach-ux500/devices-db8500.h | 15 +-
arch/arm/mach-ux500/dma-db5500.c | 16 +
arch/arm/mach-ux500/include/mach/uncompress.h | 6 +-
arch/arm/mach-ux500/include/mach/usb.h | 25 ++
arch/arm/mach-ux500/usb.c | 160 ++++++++
arch/arm/plat-nomadik/gpio.c | 487 +++++++++++++++++++++----
arch/arm/plat-nomadik/include/plat/gpio.h | 6 +
32 files changed, 2269 insertions(+), 632 deletions(-)
delete mode 100644 arch/arm/mach-ux500/board-mop500-keypads.c
create mode 100644 arch/arm/mach-ux500/board-mop500-pins.c
create mode 100644 arch/arm/mach-ux500/board-mop500-stuib.c
create mode 100644 arch/arm/mach-ux500/board-mop500-u8500uib.c
create mode 100644 arch/arm/mach-ux500/board-mop500-uib.c
create mode 100644 arch/arm/mach-ux500/include/mach/usb.h
create mode 100644 arch/arm/mach-ux500/usb.c
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
2011-03-14 11:46 ` Linus Walleij
@ 2011-03-14 11:51 ` Russell King - ARM Linux
2011-03-14 12:43 ` Linus Walleij
0 siblings, 1 reply; 7+ messages in thread
From: Russell King - ARM Linux @ 2011-03-14 11:51 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Mar 14, 2011 at 12:46:14PM +0100, Linus Walleij wrote:
> I created a branch named "for-rmk-devel-stable" without the defconfig stuff,
> that lands entirely inside the arch/arm/* tree, it duplicates the two PMU
> patches and nothing else from your tree:
> ARM: perf_event: allow platform-specific interrupt handler
> mach-ux500: DB8500 PMU support
Don't want duplicated commits - its something that Linus has complained
about in the past with other people.
Why not base your tree off my devel-stable if the commits are already in
that branch?
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
2011-03-14 11:51 ` Russell King - ARM Linux
@ 2011-03-14 12:43 ` Linus Walleij
2011-03-14 14:20 ` Linus Walleij
0 siblings, 1 reply; 7+ messages in thread
From: Linus Walleij @ 2011-03-14 12:43 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Mar 14, 2011 at 12:51 PM, Russell King - ARM Linux
<linux@arm.linux.org.uk> wrote:
> Why not base your tree off my devel-stable if the commits are already in
> that branch?
OK I'll fix!
Linus Walleij
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39
2011-03-14 12:43 ` Linus Walleij
@ 2011-03-14 14:20 ` Linus Walleij
0 siblings, 0 replies; 7+ messages in thread
From: Linus Walleij @ 2011-03-14 14:20 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Mar 14, 2011 at 1:43 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Mon, Mar 14, 2011 at 12:51 PM, Russell King - ARM Linux
> <linux@arm.linux.org.uk> wrote:
>
>> Why not base your tree off my devel-stable if the commits are already in
>> that branch?
>
> OK I'll fix!
The following changes since commit 8688a1a8637c6b833b9b70148809db4538352d2e:
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-2.6-tcc into
devel-stable (2011-03-12 20:33:51 +0000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
for-rmk-devel-stable
Bibek Basu (1):
mach-ux500: add hrefv60 GPIO pins
Jonas Aaberg (1):
plat-nomadik: pull-up/down settings for GPIO resume
Lee Jones (1):
mach-ux500: Add Rohm BH1780GLI Light Sensor to i2c_board_info
Linus Walleij (9):
mach-ux500: add DB5500 PMU resources
mach-ux500: add a few AB8500 regulator consumers v3
mach-ux500: delete old keypad board file
mach-u300: use mmci driver for GPIO card detect
mach-u300: config U300 PL180 PL011 PL022 for DMA
mach-ux500: config Ux500 PL011 PL022 PL180 for DMA
plat-nomadik: fix compilation warning
mach-ux500: basic HREFv60 support v2
mach-u300: define a dummy filter function for coh901318
Mian Yousaf Kaukab (4):
mach-ux500: add platform data for musb
mach-ux500: update MUSB clock configurations
mach-ux500: add MUSB to db8500 devices
mach-ux500: add MUSB to db5500 devices
Philippe Langlais (4):
mach-ux500: platform data for SFH7741 proximity sensor driver
mach-ux500: platform data for LP5521 leds driver
mach-ux500: set sd/mmc clock rate to 100MHz
mach-ux500: fix inverted SD-card GPIO pin
Rabin Vincent (10):
mach-ux500: dynamic UIB (user interface boards) detection
plat-nomadik: support varying number of GPIOs per block
plat-nomadik: add custom dbg_show for GPIO
plat-nomadik: implement suspend/resume for GPIO
plat-nomadik: support secondary GPIO interrupts
plat-nomadik: set altfunc to GPIO when enabling the sleep config
plat-nomadik: implement safe switch sequence for Alt-C
plat-nomadik: get rid of unused GPIO PM code
mach-ux500: move MOP500 pins to separate file
plat-nomadik: make GPIO interrupts work with cpuidle ApSleep
Rikard Olsson (1):
plat-nomadik: change sleep/wakeup setting in GPIO SLPM register
Sundar Iyer (3):
mach-ux500: fix ux500 build error
mach-ux500: add ST-UIB platform data
mach-ux500: add U8500 UIB platform data
Virupax Sadashivpetimath (1):
plat-nomadik: type secondary IRQ correctly
arch/arm/mach-u300/core.c | 179 ++++++++-
arch/arm/mach-u300/include/mach/coh901318.h | 7 +
arch/arm/mach-u300/mmc.c | 160 ++-------
arch/arm/mach-u300/spi.c | 21 +-
arch/arm/mach-ux500/Makefile | 8 +-
arch/arm/mach-ux500/board-mop500-keypads.c | 229 ------------
arch/arm/mach-ux500/board-mop500-pins.c | 241 ++++++++++++
arch/arm/mach-ux500/board-mop500-regulators.c | 62 ++++
arch/arm/mach-ux500/board-mop500-sdi.c | 184 ++++++----
arch/arm/mach-ux500/board-mop500-stuib.c | 205 +++++++++++
arch/arm/mach-ux500/board-mop500-u8500uib.c | 111 ++++++
arch/arm/mach-ux500/board-mop500-uib.c | 135 +++++++
arch/arm/mach-ux500/board-mop500.c | 328 ++++++++++++++----
arch/arm/mach-ux500/board-mop500.h | 25 ++-
arch/arm/mach-ux500/board-u5500-sdi.c | 25 ++
arch/arm/mach-ux500/board-u5500.c | 6 +-
arch/arm/mach-ux500/clock.c | 6 +-
arch/arm/mach-ux500/cpu-db5500.c | 53 +++-
arch/arm/mach-ux500/cpu-db8500.c | 25 ++
arch/arm/mach-ux500/devices-common.c | 1 +
arch/arm/mach-ux500/devices-common.h | 7 +-
arch/arm/mach-ux500/devices-db5500.h | 19 +-
arch/arm/mach-ux500/devices-db8500.c | 67 ++++-
arch/arm/mach-ux500/devices-db8500.h | 15 +-
arch/arm/mach-ux500/dma-db5500.c | 16 +
arch/arm/mach-ux500/include/mach/uncompress.h | 6 +-
arch/arm/mach-ux500/include/mach/usb.h | 25 ++
arch/arm/mach-ux500/usb.c | 160 ++++++++
arch/arm/plat-nomadik/gpio.c | 487 +++++++++++++++++++++----
arch/arm/plat-nomadik/include/plat/gpio.h | 6 +
30 files changed, 2192 insertions(+), 627 deletions(-)
delete mode 100644 arch/arm/mach-ux500/board-mop500-keypads.c
create mode 100644 arch/arm/mach-ux500/board-mop500-pins.c
create mode 100644 arch/arm/mach-ux500/board-mop500-stuib.c
create mode 100644 arch/arm/mach-ux500/board-mop500-u8500uib.c
create mode 100644 arch/arm/mach-ux500/board-mop500-uib.c
create mode 100644 arch/arm/mach-ux500/include/mach/usb.h
create mode 100644 arch/arm/mach-ux500/usb.c
Thanks,
Linus Walleij
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-03-14 14:20 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-11 20:18 [GIT PULL] u300, ux500 and Nomadik changes for v2.6.39 Linus Walleij
2011-03-13 21:48 ` Russell King - ARM Linux
2011-03-14 11:22 ` Russell King - ARM Linux
2011-03-14 11:46 ` Linus Walleij
2011-03-14 11:51 ` Russell King - ARM Linux
2011-03-14 12:43 ` Linus Walleij
2011-03-14 14:20 ` Linus Walleij
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).