* [U-Boot] Please pull u-boot-arm/master
@ 2014-08-28 17:02 Tom Rini
2014-08-28 19:50 ` Tom Rini
0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2014-08-28 17:02 UTC (permalink / raw)
To: u-boot
Hi me,
The following changes since commit e76b933e02e1b38e48754c435e9dba1c0deeb3c6:
Prepare v2014.10-rc1 (2014-08-06 09:12:58 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-arm next
for you to fetch changes up to 1899fac925eda817e12234aef3d01d354788662e:
Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master' (2014-08-09 16:48:34 +0200)
----------------------------------------------------------------
Albert ARIBAUD (1):
Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master'
Hans de Goede (8):
sun4i: add USB EHCI settings
sun5i: add USB EHCI settings
sunxi: Enable EHCI on various sunxi boards
sunxi: Add CONFIG_MACPWR option
sun4i: Add support for a number of new sun4i boards
sun5i: Add support for a number of new sun5i boards
sun7i: Add support for a number of new sun7i boards
sun7i: Add bananapi board
Ian Campbell (2):
ahci: provide sunxi SATA driver using AHCI platform framework
cubieboard2: Enable AXP209 power controller
Marc Zyngier (2):
sunxi: HYP/non-sec: add sun7i PSCI backend
sunxi: HYP/non-sec: configure CNTFRQ on all CPUs
Roman Byshko (5):
sunxi: add defines to control USB Host clocks/resets
sunxi: add USB EHCI driver
sunxi: add general USB settings
sun7i: add USB EHCI settings
sun7i: cubietruck: enable USB EHCI
arch/arm/cpu/armv7/sunxi/Makefile | 3 +
arch/arm/cpu/armv7/sunxi/board.c | 5 +
arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 4 +
arch/arm/cpu/armv7/sunxi/psci.S | 162 ++++++++++++++++++++
arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 15 +-
board/sunxi/MAINTAINERS | 19 ++-
board/sunxi/Makefile | 16 ++
board/sunxi/ahci.c | 84 +++++++++++
board/sunxi/dram_a10_olinuxino_l.c | 31 ++++
board/sunxi/dram_a10s_olinuxino_m.c | 31 ++++
board/sunxi/dram_a13_olinuxino.c | 31 ++++
board/sunxi/dram_bananapi.c | 31 ++++
board/sunxi/dram_linksprite_pcduino3.c | 31 ++++
board/sunxi/dram_sun4i_360_1024_iow16.c | 31 ++++
board/sunxi/dram_sun4i_360_1024_iow8.c | 31 ++++
board/sunxi/dram_sun4i_360_512.c | 31 ++++
board/sunxi/dram_sun4i_384_1024_iow8.c | 31 ++++
board/sunxi/dram_sun7i_384_1024_iow16.c | 31 ++++
board/sunxi/dram_sun7i_384_512_busw16_iow16.c | 31 ++++
configs/A10-OLinuXino-Lime_defconfig | 4 +
configs/A10s-OLinuXino-M_defconfig | 4 +
configs/A13-OLinuXinoM_defconfig | 2 +-
configs/A13-OLinuXino_defconfig | 4 +
configs/A20-OLinuXino_MICRO_defconfig | 4 +
configs/Auxtek-T004_defconfig | 4 +
configs/Bananapi_defconfig | 4 +
configs/Cubieboard2_FEL_defconfig | 2 +-
configs/Cubieboard2_defconfig | 2 +-
configs/Cubieboard_defconfig | 2 +-
configs/Cubietruck_FEL_defconfig | 2 +-
configs/Cubietruck_defconfig | 2 +-
configs/Linksprite_pcDuino3_defconfig | 4 +
configs/Mele_A1000G_defconfig | 4 +
configs/Mele_A1000_defconfig | 4 +
configs/Mini-X-1Gb_defconfig | 4 +
configs/Mini-X_defconfig | 4 +
configs/ba10_tv_box_defconfig | 4 +
configs/i12-tvbox_defconfig | 4 +
configs/qt840a_defconfig | 4 +
configs/r7-tv-dongle_defconfig | 2 +-
drivers/block/ahci.c | 16 ++
drivers/usb/host/Makefile | 1 +
drivers/usb/host/ehci-sunxi.c | 201 +++++++++++++++++++++++++
include/ahci.h | 4 +
include/configs/sun4i.h | 12 ++
include/configs/sun5i.h | 5 +
include/configs/sun7i.h | 19 +++
include/configs/sunxi-common.h | 18 +++
48 files changed, 982 insertions(+), 13 deletions(-)
create mode 100644 arch/arm/cpu/armv7/sunxi/psci.S
create mode 100644 board/sunxi/ahci.c
create mode 100644 board/sunxi/dram_a10_olinuxino_l.c
create mode 100644 board/sunxi/dram_a10s_olinuxino_m.c
create mode 100644 board/sunxi/dram_a13_olinuxino.c
create mode 100644 board/sunxi/dram_bananapi.c
create mode 100644 board/sunxi/dram_linksprite_pcduino3.c
create mode 100644 board/sunxi/dram_sun4i_360_1024_iow16.c
create mode 100644 board/sunxi/dram_sun4i_360_1024_iow8.c
create mode 100644 board/sunxi/dram_sun4i_360_512.c
create mode 100644 board/sunxi/dram_sun4i_384_1024_iow8.c
create mode 100644 board/sunxi/dram_sun7i_384_1024_iow16.c
create mode 100644 board/sunxi/dram_sun7i_384_512_busw16_iow16.c
create mode 100644 configs/A10-OLinuXino-Lime_defconfig
create mode 100644 configs/A10s-OLinuXino-M_defconfig
create mode 100644 configs/A13-OLinuXino_defconfig
create mode 100644 configs/A20-OLinuXino_MICRO_defconfig
create mode 100644 configs/Auxtek-T004_defconfig
create mode 100644 configs/Bananapi_defconfig
create mode 100644 configs/Linksprite_pcDuino3_defconfig
create mode 100644 configs/Mele_A1000G_defconfig
create mode 100644 configs/Mele_A1000_defconfig
create mode 100644 configs/Mini-X-1Gb_defconfig
create mode 100644 configs/Mini-X_defconfig
create mode 100644 configs/ba10_tv_box_defconfig
create mode 100644 configs/i12-tvbox_defconfig
create mode 100644 configs/qt840a_defconfig
create mode 100644 drivers/usb/host/ehci-sunxi.c
Thanks.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140828/2b428006/attachment.pgp>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] Please pull u-boot-arm/master
2014-08-28 17:02 [U-Boot] Please pull u-boot-arm/master Tom Rini
@ 2014-08-28 19:50 ` Tom Rini
2014-08-28 21:19 ` Hans de Goede
0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2014-08-28 19:50 UTC (permalink / raw)
To: u-boot
On Thu, Aug 28, 2014 at 01:02:57PM -0400, Tom Rini wrote:
> Hi me,
>
> The following changes since commit e76b933e02e1b38e48754c435e9dba1c0deeb3c6:
>
> Prepare v2014.10-rc1 (2014-08-06 09:12:58 -0400)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-arm next
>
> for you to fetch changes up to 1899fac925eda817e12234aef3d01d354788662e:
>
> Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master' (2014-08-09 16:48:34 +0200)
>
> ----------------------------------------------------------------
>
> Albert ARIBAUD (1):
> Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master'
>
> Hans de Goede (8):
> sun4i: add USB EHCI settings
> sun5i: add USB EHCI settings
> sunxi: Enable EHCI on various sunxi boards
> sunxi: Add CONFIG_MACPWR option
> sun4i: Add support for a number of new sun4i boards
> sun5i: Add support for a number of new sun5i boards
> sun7i: Add support for a number of new sun7i boards
> sun7i: Add bananapi board
>
> Ian Campbell (2):
> ahci: provide sunxi SATA driver using AHCI platform framework
> cubieboard2: Enable AXP209 power controller
>
> Marc Zyngier (2):
> sunxi: HYP/non-sec: add sun7i PSCI backend
> sunxi: HYP/non-sec: configure CNTFRQ on all CPUs
>
> Roman Byshko (5):
> sunxi: add defines to control USB Host clocks/resets
> sunxi: add USB EHCI driver
> sunxi: add general USB settings
> sun7i: add USB EHCI settings
> sun7i: cubietruck: enable USB EHCI
>
> arch/arm/cpu/armv7/sunxi/Makefile | 3 +
> arch/arm/cpu/armv7/sunxi/board.c | 5 +
> arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 4 +
> arch/arm/cpu/armv7/sunxi/psci.S | 162 ++++++++++++++++++++
> arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 15 +-
> board/sunxi/MAINTAINERS | 19 ++-
> board/sunxi/Makefile | 16 ++
> board/sunxi/ahci.c | 84 +++++++++++
> board/sunxi/dram_a10_olinuxino_l.c | 31 ++++
> board/sunxi/dram_a10s_olinuxino_m.c | 31 ++++
> board/sunxi/dram_a13_olinuxino.c | 31 ++++
> board/sunxi/dram_bananapi.c | 31 ++++
> board/sunxi/dram_linksprite_pcduino3.c | 31 ++++
> board/sunxi/dram_sun4i_360_1024_iow16.c | 31 ++++
> board/sunxi/dram_sun4i_360_1024_iow8.c | 31 ++++
> board/sunxi/dram_sun4i_360_512.c | 31 ++++
> board/sunxi/dram_sun4i_384_1024_iow8.c | 31 ++++
> board/sunxi/dram_sun7i_384_1024_iow16.c | 31 ++++
> board/sunxi/dram_sun7i_384_512_busw16_iow16.c | 31 ++++
> configs/A10-OLinuXino-Lime_defconfig | 4 +
> configs/A10s-OLinuXino-M_defconfig | 4 +
> configs/A13-OLinuXinoM_defconfig | 2 +-
> configs/A13-OLinuXino_defconfig | 4 +
> configs/A20-OLinuXino_MICRO_defconfig | 4 +
> configs/Auxtek-T004_defconfig | 4 +
> configs/Bananapi_defconfig | 4 +
> configs/Cubieboard2_FEL_defconfig | 2 +-
> configs/Cubieboard2_defconfig | 2 +-
> configs/Cubieboard_defconfig | 2 +-
> configs/Cubietruck_FEL_defconfig | 2 +-
> configs/Cubietruck_defconfig | 2 +-
> configs/Linksprite_pcDuino3_defconfig | 4 +
> configs/Mele_A1000G_defconfig | 4 +
> configs/Mele_A1000_defconfig | 4 +
> configs/Mini-X-1Gb_defconfig | 4 +
> configs/Mini-X_defconfig | 4 +
> configs/ba10_tv_box_defconfig | 4 +
> configs/i12-tvbox_defconfig | 4 +
> configs/qt840a_defconfig | 4 +
> configs/r7-tv-dongle_defconfig | 2 +-
> drivers/block/ahci.c | 16 ++
> drivers/usb/host/Makefile | 1 +
> drivers/usb/host/ehci-sunxi.c | 201 +++++++++++++++++++++++++
> include/ahci.h | 4 +
> include/configs/sun4i.h | 12 ++
> include/configs/sun5i.h | 5 +
> include/configs/sun7i.h | 19 +++
> include/configs/sunxi-common.h | 18 +++
> 48 files changed, 982 insertions(+), 13 deletions(-)
> create mode 100644 arch/arm/cpu/armv7/sunxi/psci.S
> create mode 100644 board/sunxi/ahci.c
> create mode 100644 board/sunxi/dram_a10_olinuxino_l.c
> create mode 100644 board/sunxi/dram_a10s_olinuxino_m.c
> create mode 100644 board/sunxi/dram_a13_olinuxino.c
> create mode 100644 board/sunxi/dram_bananapi.c
> create mode 100644 board/sunxi/dram_linksprite_pcduino3.c
> create mode 100644 board/sunxi/dram_sun4i_360_1024_iow16.c
> create mode 100644 board/sunxi/dram_sun4i_360_1024_iow8.c
> create mode 100644 board/sunxi/dram_sun4i_360_512.c
> create mode 100644 board/sunxi/dram_sun4i_384_1024_iow8.c
> create mode 100644 board/sunxi/dram_sun7i_384_1024_iow16.c
> create mode 100644 board/sunxi/dram_sun7i_384_512_busw16_iow16.c
> create mode 100644 configs/A10-OLinuXino-Lime_defconfig
> create mode 100644 configs/A10s-OLinuXino-M_defconfig
> create mode 100644 configs/A13-OLinuXino_defconfig
> create mode 100644 configs/A20-OLinuXino_MICRO_defconfig
> create mode 100644 configs/Auxtek-T004_defconfig
> create mode 100644 configs/Bananapi_defconfig
> create mode 100644 configs/Linksprite_pcDuino3_defconfig
> create mode 100644 configs/Mele_A1000G_defconfig
> create mode 100644 configs/Mele_A1000_defconfig
> create mode 100644 configs/Mini-X-1Gb_defconfig
> create mode 100644 configs/Mini-X_defconfig
> create mode 100644 configs/ba10_tv_box_defconfig
> create mode 100644 configs/i12-tvbox_defconfig
> create mode 100644 configs/qt840a_defconfig
> create mode 100644 drivers/usb/host/ehci-sunxi.c
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140828/b19fa04e/attachment.pgp>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] Please pull u-boot-arm/master
2014-08-28 19:50 ` Tom Rini
@ 2014-08-28 21:19 ` Hans de Goede
0 siblings, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2014-08-28 21:19 UTC (permalink / raw)
To: u-boot
Hi,
On 08/28/2014 09:50 PM, Tom Rini wrote:
> On Thu, Aug 28, 2014 at 01:02:57PM -0400, Tom Rini wrote:
>
>> Hi me,
>>
>> The following changes since commit e76b933e02e1b38e48754c435e9dba1c0deeb3c6:
>>
>> Prepare v2014.10-rc1 (2014-08-06 09:12:58 -0400)
>>
>> are available in the git repository at:
>>
>> git://git.denx.de/u-boot-arm next
>>
>> for you to fetch changes up to 1899fac925eda817e12234aef3d01d354788662e:
>>
>> Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master' (2014-08-09 16:48:34 +0200)
>>
>> ----------------------------------------------------------------
>>
>> Albert ARIBAUD (1):
>> Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master'
>>
>> Hans de Goede (8):
>> sun4i: add USB EHCI settings
>> sun5i: add USB EHCI settings
>> sunxi: Enable EHCI on various sunxi boards
>> sunxi: Add CONFIG_MACPWR option
>> sun4i: Add support for a number of new sun4i boards
>> sun5i: Add support for a number of new sun5i boards
>> sun7i: Add support for a number of new sun7i boards
>> sun7i: Add bananapi board
>>
>> Ian Campbell (2):
>> ahci: provide sunxi SATA driver using AHCI platform framework
>> cubieboard2: Enable AXP209 power controller
>>
>> Marc Zyngier (2):
>> sunxi: HYP/non-sec: add sun7i PSCI backend
>> sunxi: HYP/non-sec: configure CNTFRQ on all CPUs
>>
>> Roman Byshko (5):
>> sunxi: add defines to control USB Host clocks/resets
>> sunxi: add USB EHCI driver
>> sunxi: add general USB settings
>> sun7i: add USB EHCI settings
>> sun7i: cubietruck: enable USB EHCI
>>
>> arch/arm/cpu/armv7/sunxi/Makefile | 3 +
>> arch/arm/cpu/armv7/sunxi/board.c | 5 +
>> arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 4 +
>> arch/arm/cpu/armv7/sunxi/psci.S | 162 ++++++++++++++++++++
>> arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 15 +-
>> board/sunxi/MAINTAINERS | 19 ++-
>> board/sunxi/Makefile | 16 ++
>> board/sunxi/ahci.c | 84 +++++++++++
>> board/sunxi/dram_a10_olinuxino_l.c | 31 ++++
>> board/sunxi/dram_a10s_olinuxino_m.c | 31 ++++
>> board/sunxi/dram_a13_olinuxino.c | 31 ++++
>> board/sunxi/dram_bananapi.c | 31 ++++
>> board/sunxi/dram_linksprite_pcduino3.c | 31 ++++
>> board/sunxi/dram_sun4i_360_1024_iow16.c | 31 ++++
>> board/sunxi/dram_sun4i_360_1024_iow8.c | 31 ++++
>> board/sunxi/dram_sun4i_360_512.c | 31 ++++
>> board/sunxi/dram_sun4i_384_1024_iow8.c | 31 ++++
>> board/sunxi/dram_sun7i_384_1024_iow16.c | 31 ++++
>> board/sunxi/dram_sun7i_384_512_busw16_iow16.c | 31 ++++
>> configs/A10-OLinuXino-Lime_defconfig | 4 +
>> configs/A10s-OLinuXino-M_defconfig | 4 +
>> configs/A13-OLinuXinoM_defconfig | 2 +-
>> configs/A13-OLinuXino_defconfig | 4 +
>> configs/A20-OLinuXino_MICRO_defconfig | 4 +
>> configs/Auxtek-T004_defconfig | 4 +
>> configs/Bananapi_defconfig | 4 +
>> configs/Cubieboard2_FEL_defconfig | 2 +-
>> configs/Cubieboard2_defconfig | 2 +-
>> configs/Cubieboard_defconfig | 2 +-
>> configs/Cubietruck_FEL_defconfig | 2 +-
>> configs/Cubietruck_defconfig | 2 +-
>> configs/Linksprite_pcDuino3_defconfig | 4 +
>> configs/Mele_A1000G_defconfig | 4 +
>> configs/Mele_A1000_defconfig | 4 +
>> configs/Mini-X-1Gb_defconfig | 4 +
>> configs/Mini-X_defconfig | 4 +
>> configs/ba10_tv_box_defconfig | 4 +
>> configs/i12-tvbox_defconfig | 4 +
>> configs/qt840a_defconfig | 4 +
>> configs/r7-tv-dongle_defconfig | 2 +-
>> drivers/block/ahci.c | 16 ++
>> drivers/usb/host/Makefile | 1 +
>> drivers/usb/host/ehci-sunxi.c | 201 +++++++++++++++++++++++++
>> include/ahci.h | 4 +
>> include/configs/sun4i.h | 12 ++
>> include/configs/sun5i.h | 5 +
>> include/configs/sun7i.h | 19 +++
>> include/configs/sunxi-common.h | 18 +++
>> 48 files changed, 982 insertions(+), 13 deletions(-)
>> create mode 100644 arch/arm/cpu/armv7/sunxi/psci.S
>> create mode 100644 board/sunxi/ahci.c
>> create mode 100644 board/sunxi/dram_a10_olinuxino_l.c
>> create mode 100644 board/sunxi/dram_a10s_olinuxino_m.c
>> create mode 100644 board/sunxi/dram_a13_olinuxino.c
>> create mode 100644 board/sunxi/dram_bananapi.c
>> create mode 100644 board/sunxi/dram_linksprite_pcduino3.c
>> create mode 100644 board/sunxi/dram_sun4i_360_1024_iow16.c
>> create mode 100644 board/sunxi/dram_sun4i_360_1024_iow8.c
>> create mode 100644 board/sunxi/dram_sun4i_360_512.c
>> create mode 100644 board/sunxi/dram_sun4i_384_1024_iow8.c
>> create mode 100644 board/sunxi/dram_sun7i_384_1024_iow16.c
>> create mode 100644 board/sunxi/dram_sun7i_384_512_busw16_iow16.c
>> create mode 100644 configs/A10-OLinuXino-Lime_defconfig
>> create mode 100644 configs/A10s-OLinuXino-M_defconfig
>> create mode 100644 configs/A13-OLinuXino_defconfig
>> create mode 100644 configs/A20-OLinuXino_MICRO_defconfig
>> create mode 100644 configs/Auxtek-T004_defconfig
>> create mode 100644 configs/Bananapi_defconfig
>> create mode 100644 configs/Linksprite_pcDuino3_defconfig
>> create mode 100644 configs/Mele_A1000G_defconfig
>> create mode 100644 configs/Mele_A1000_defconfig
>> create mode 100644 configs/Mini-X-1Gb_defconfig
>> create mode 100644 configs/Mini-X_defconfig
>> create mode 100644 configs/ba10_tv_box_defconfig
>> create mode 100644 configs/i12-tvbox_defconfig
>> create mode 100644 configs/qt840a_defconfig
>> create mode 100644 drivers/usb/host/ehci-sunxi.c
>
> Applied to u-boot/master, thanks!
Many thanks for pulling this in!
Note I've had a second pull req pending to Albert on top
of the one which he had already merged. I'll re-send
the pull-req mail to you right away.
Regards,
Hans
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-08-28 21:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-28 17:02 [U-Boot] Please pull u-boot-arm/master Tom Rini
2014-08-28 19:50 ` Tom Rini
2014-08-28 21:19 ` Hans de Goede
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox