* [U-Boot] Please pull u-boot-sunxi/master into master
@ 2014-10-24 8:06 Hans de Goede
2014-10-27 0:36 ` Tom Rini
0 siblings, 1 reply; 7+ messages in thread
From: Hans de Goede @ 2014-10-24 8:06 UTC (permalink / raw)
To: u-boot
<resend with proper Cc-s added>
Hi Tom,
Please pull u-boot-sunxi/master into master, highlights:
1) Preliminary A31 (sun6i) and A23 (sun8i) support, preliminary because we
lack SPL support for now, so Allwinner's boot0 + boot1 loaders must be used to
bootstrap
2) Support for the secondary mmc slot found on some boards, including booting
from the eMMC on the Mele-M3.
3) Support for booting old linux-sunxi kernels on sun4i and sun5i through
CONFIG_OLD_SUNXI_KERNEL_COMPAT Kconfig option (sun7i is wip)
The following changes since commit 5b3ee386fde82a1ba42ff09b95247842c9a1585e:
kbuild: clear VENDOR variable to fix build error on tcsh (2014-10-23 16:35:12 -0400)
are available in the git repository at:
http://git.denx.de/u-boot-sunxi.git
for you to fetch changes up to accc9e446be6c3bd129315a0c5830bddccfa16da:
sunxi: Add CONFIG_OLD_SUNXI_KERNEL_COMPAT Kconfig option (2014-10-24 09:37:26 +0200)
----------------------------------------------------------------
Chen-Yu Tsai (16):
ARM: sunxi: Use macro values for setting UART GPIO pull-ups
ARM: sunxi: Fix build break when CONFIG_USB_EHCI is not defined
ARM: sun6i: Add clock support
ARM: sun6i: Define UART0 pins for A31
ARM: sun6i: Add Colombus board defconfig
ARM: sunxi: Fix build break when CONFIG_MMC is not defined
ARM: sunxi: Move watchdog register definitions to separate file
ARM: sunxi: Add sun6i/sun8i timer block register definition
ARM: sunxi: Fix reset command on sun6i/sun8i
ARM: sunxi: Add sun8i (A23) UART0 pin mux support
ARM: sunxi: Add support for uart0 on port F (mmc0)
mmc: sunxi: Add support for sun8i (A23)
ARM: sunxi: Add basic A23 support
ARM: sunxi: Allow specifying module in prcm apb0 init function
ARM: sunxi: Add support for using R_UART as console
ARM: sunxi: Add Ippo-q8h-v5 A23 tablet board defconfig
Hans de Goede (13):
sunxi: Add support for the Mele M3 board
ARM: sunxi-mmc: Add mmc support for sun6i / A31
sunxi: Add mmc card-detect functionality
sunxi: Turn MMC_SUNXI_SLOT_EXTRA into a proper Kconfig option
sunxi: When we've both mmc0 and mmc2, detect from which one we're booting
sunxi: Use PG3 - PG8 as io-pins for mmc1
sunxi: Enable second sdcard slot found on some boards
sunxi: Kconfig: Unify sunxi Kconfig code
sunxi: Add CONFIG_MACH_TYPE defines to sun4i, sun5i and sun7i
ARM: sunxi: Add support for R_PIO gpio banks
sunxi: Add clock_get_pll5p() function
sunxi: dram: Use clock_get_pll5p to calculate mbus, rather then hardcoding
sunxi: Add CONFIG_OLD_SUNXI_KERNEL_COMPAT Kconfig option
Iain Paton (1):
sun7i: Add support for Olimex A20-OLinuXino-LIME2
Ian Campbell (1):
sunxi: Increase command line buffer size (CONFIG_SYS_CBSIZE)
Maxime Ripard (2):
ARM: sun6i: Setup the A31 UART0 muxing
ARM: sunxi: Add basic A31 support
Oliver Schinagl (2):
ARM: sun6i: Add base address for the new controllers in A31
ARM: sun6i: Add support for the power reset control module found on the A31
Wills Wang (1):
mmc: sunxi: add SDHC support for sun6i/sun7i/sun8i
arch/arm/Kconfig | 6 +
arch/arm/cpu/armv7/sunxi/Makefile | 4 +
arch/arm/cpu/armv7/sunxi/board.c | 38 +++-
arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 11 ++
arch/arm/cpu/armv7/sunxi/clock_sun6i.c | 76 ++++++++
arch/arm/cpu/armv7/sunxi/cpu_info.c | 4 +
arch/arm/cpu/armv7/sunxi/dram.c | 36 ++--
arch/arm/cpu/armv7/sunxi/prcm.c | 35 ++++
arch/arm/include/asm/arch-sunxi/clock.h | 5 +
arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 3 +
arch/arm/include/asm/arch-sunxi/clock_sun6i.h | 205 ++++++++++++++++++++++
arch/arm/include/asm/arch-sunxi/cpu.h | 10 ++
arch/arm/include/asm/arch-sunxi/gpio.h | 45 ++++-
arch/arm/include/asm/arch-sunxi/mmc.h | 7 +-
arch/arm/include/asm/arch-sunxi/prcm.h | 238 ++++++++++++++++++++++++++
arch/arm/include/asm/arch-sunxi/timer.h | 23 +--
arch/arm/include/asm/arch-sunxi/watchdog.h | 44 +++++
board/sunxi/Kconfig | 68 +++++---
board/sunxi/MAINTAINERS | 17 ++
board/sunxi/Makefile | 2 +
board/sunxi/board.c | 38 +++-
board/sunxi/dram_a20_olinuxino_l2.c | 31 ++++
configs/A10s-OLinuXino-M_defconfig | 3 +
configs/A20-OLinuXino-Lime2_defconfig | 5 +
configs/A20-OLinuXino_MICRO_defconfig | 3 +
configs/Colombus_defconfig | 4 +
configs/Ippo_q8h_defconfig | 4 +
configs/Mele_M3_defconfig | 7 +
drivers/mmc/sunxi_mmc.c | 42 ++++-
include/configs/sun4i.h | 1 +
include/configs/sun5i.h | 1 +
include/configs/sun6i.h | 26 +++
include/configs/sun7i.h | 1 +
include/configs/sun8i.h | 23 +++
include/configs/sunxi-common.h | 24 ++-
35 files changed, 1010 insertions(+), 80 deletions(-)
create mode 100644 arch/arm/cpu/armv7/sunxi/clock_sun6i.c
create mode 100644 arch/arm/cpu/armv7/sunxi/prcm.c
create mode 100644 arch/arm/include/asm/arch-sunxi/clock_sun6i.h
create mode 100644 arch/arm/include/asm/arch-sunxi/prcm.h
create mode 100644 arch/arm/include/asm/arch-sunxi/watchdog.h
create mode 100644 board/sunxi/dram_a20_olinuxino_l2.c
create mode 100644 configs/A20-OLinuXino-Lime2_defconfig
create mode 100644 configs/Colombus_defconfig
create mode 100644 configs/Ippo_q8h_defconfig
create mode 100644 configs/Mele_M3_defconfig
create mode 100644 include/configs/sun6i.h
create mode 100644 include/configs/sun8i.h
Regards,
Hans
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] Please pull u-boot-sunxi/master into master
2014-10-24 8:06 Hans de Goede
@ 2014-10-27 0:36 ` Tom Rini
0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-10-27 0:36 UTC (permalink / raw)
To: u-boot
On Fri, Oct 24, 2014 at 10:06:24AM +0200, Hans de Goede wrote:
> <resend with proper Cc-s added>
>
> Hi Tom,
>
> Please pull u-boot-sunxi/master into master, highlights:
>
> 1) Preliminary A31 (sun6i) and A23 (sun8i) support, preliminary because we
> lack SPL support for now, so Allwinner's boot0 + boot1 loaders must be used to
> bootstrap
>
> 2) Support for the secondary mmc slot found on some boards, including booting
> from the eMMC on the Mele-M3.
>
> 3) Support for booting old linux-sunxi kernels on sun4i and sun5i through
> CONFIG_OLD_SUNXI_KERNEL_COMPAT Kconfig option (sun7i is wip)
>
> The following changes since commit 5b3ee386fde82a1ba42ff09b95247842c9a1585e:
>
> kbuild: clear VENDOR variable to fix build error on tcsh (2014-10-23 16:35:12 -0400)
>
> are available in the git repository at:
>
> http://git.denx.de/u-boot-sunxi.git
>
> for you to fetch changes up to accc9e446be6c3bd129315a0c5830bddccfa16da:
>
> sunxi: Add CONFIG_OLD_SUNXI_KERNEL_COMPAT Kconfig option (2014-10-24 09:37:26 +0200)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141026/8baf625c/attachment.pgp>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] Please pull u-boot-sunxi/master into master
@ 2014-11-05 12:19 Hans de Goede
2014-11-05 15:59 ` Tom Rini
0 siblings, 1 reply; 7+ messages in thread
From: Hans de Goede @ 2014-11-05 12:19 UTC (permalink / raw)
To: u-boot
Hi Tom,
Please pull u-boot-sunxi/master into master, highlights:
1) Kconfig cleanup by Ian
2) device-model support for gpio and uarts by Simon
The following changes since commit 26f195c71252e98aebfffd5cfa994a4475559370:
ARM: kwimage: fix v0 format (2014-11-04 15:03:07 -0500)
are available in the git repository at:
http://git.denx.de/u-boot-sunxi.git
for you to fetch changes up to 44fd5914fb08ffcd96c9db7e448787f1d2aed801:
dm: sunxi: Request USB vbus gpio (2014-11-05 13:10:22 +0100)
----------------------------------------------------------------
Chen-Yu Tsai (1):
ARM: sunxi: Fix Ippo-q8h-v5 defconfig filename
Hans de Goede (2):
dm: sunxi: Request card detect gpio
dm: sunxi: Request USB vbus gpio
Ian Campbell (7):
sunxi: kconfig: Add top-level ARCH_SUNXI
sunxi: kconfig: Rename TARGET_SUN[45678]I to MACH_SUN[45678]I.
sunxi: Kconfig: Make SPL_FEL a toplevel Kconfig option
sunxi: Use CONFIG_MACH_SUN?I from Kconfig instead of CONFIG_SUN?I
sunxi: Drop FEL variants of defconfigs.
sunxi: kconfig: Introduce CONFIG_TARGET_<BOARD>
sunxi: kconfig: Add %_felconfig rule to enable FEL build of sunxi platforms.
Simon Glass (6):
dm: sunxi: dts: Add sun7i device tree files
dm: sunxi: Add a new config for an FDT-based pcDuino3
dm: sunxi: Add pinmux functions which take a bank parameter
dm: sunxi: Make sure that GPIOs are requested
dm: sunxi: Modify the GPIO driver to support driver model
dm: sunxi: Add support for serial using driver model
Makefile | 3 +-
arch/arm/Kconfig | 26 +-
arch/arm/cpu/armv7/sunxi/Makefile | 20 +-
arch/arm/cpu/armv7/sunxi/board.c | 20 +-
arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 2 +-
arch/arm/cpu/armv7/sunxi/cpu_info.c | 10 +-
arch/arm/cpu/armv7/sunxi/dram.c | 34 +-
arch/arm/cpu/armv7/sunxi/pinmux.c | 32 +-
arch/arm/dts/Makefile | 1 +
arch/arm/dts/sun7i-a20-pcduino3.dts | 177 ++++++
arch/arm/dts/sun7i-a20.dtsi | 988 +++++++++++++++++++++++++++++
arch/arm/dts/sunxi-common-regulators.dtsi | 89 +++
arch/arm/include/asm/arch-sunxi/clock.h | 2 +-
arch/arm/include/asm/arch-sunxi/gpio.h | 6 +-
arch/arm/include/asm/arch-sunxi/mmc.h | 2 +-
arch/arm/include/asm/arch-sunxi/timer.h | 4 +-
arch/arm/include/asm/arch-sunxi/watchdog.h | 2 +-
board/sunxi/Kconfig | 146 ++++-
board/sunxi/MAINTAINERS | 3 +-
board/sunxi/Makefile | 44 +-
board/sunxi/ahci.c | 1 +
configs/A10-OLinuXino-Lime_defconfig | 6 +-
configs/A10s-OLinuXino-M_defconfig | 6 +-
configs/A13-OLinuXinoM_defconfig | 6 +-
configs/A13-OLinuXino_defconfig | 6 +-
configs/A20-OLinuXino-Lime2_defconfig | 6 +-
configs/A20-OLinuXino-Lime_defconfig | 6 +-
configs/A20-OLinuXino_MICRO_defconfig | 6 +-
configs/Auxtek-T004_defconfig | 6 +-
configs/Bananapi_defconfig | 6 +-
configs/Colombus_defconfig | 5 +-
configs/Cubieboard2_FEL_defconfig | 5 -
configs/Cubieboard2_defconfig | 6 +-
configs/Cubieboard_defconfig | 6 +-
configs/Cubietruck_FEL_defconfig | 5 -
configs/Cubietruck_defconfig | 6 +-
configs/Ippo_q8h_defconfig | 4 -
configs/Ippo_q8h_v5_defconfig | 6 +
configs/Linksprite_pcDuino3_defconfig | 6 +-
configs/Linksprite_pcDuino3_fdt_defconfig | 11 +
configs/Mele_A1000G_defconfig | 6 +-
configs/Mele_A1000_defconfig | 6 +-
configs/Mele_M3_defconfig | 6 +-
configs/Mini-X-1Gb_defconfig | 6 +-
configs/Mini-X_defconfig | 6 +-
configs/ba10_tv_box_defconfig | 6 +-
configs/i12-tvbox_defconfig | 6 +-
configs/qt840a_defconfig | 6 +-
configs/r7-tv-dongle_defconfig | 6 +-
drivers/gpio/sunxi_gpio.c | 170 +++++
drivers/mmc/sunxi_mmc.c | 36 +-
drivers/serial/Makefile | 1 +
drivers/serial/serial_dw.c | 39 ++
drivers/usb/host/ehci-sunxi.c | 12 +-
include/configs/sun4i.h | 1 -
include/configs/sun5i.h | 1 -
include/configs/sun6i.h | 1 -
include/configs/sun7i.h | 1 -
include/configs/sun8i.h | 1 -
include/configs/sunxi-common.h | 22 +-
include/dt-bindings/input/input.h | 525 +++++++++++++++
scripts/multiconfig.sh | 12 +
62 files changed, 2403 insertions(+), 199 deletions(-)
create mode 100644 arch/arm/dts/sun7i-a20-pcduino3.dts
create mode 100644 arch/arm/dts/sun7i-a20.dtsi
create mode 100644 arch/arm/dts/sunxi-common-regulators.dtsi
delete mode 100644 configs/Cubieboard2_FEL_defconfig
delete mode 100644 configs/Cubietruck_FEL_defconfig
delete mode 100644 configs/Ippo_q8h_defconfig
create mode 100644 configs/Ippo_q8h_v5_defconfig
create mode 100644 configs/Linksprite_pcDuino3_fdt_defconfig
create mode 100644 drivers/serial/serial_dw.c
create mode 100644 include/dt-bindings/input/input.h
Regards,
Hans
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] Please pull u-boot-sunxi/master into master
2014-11-05 12:19 Hans de Goede
@ 2014-11-05 15:59 ` Tom Rini
0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-11-05 15:59 UTC (permalink / raw)
To: u-boot
On Wed, Nov 05, 2014 at 01:19:18PM +0100, Hans de Goede wrote:
> Hi Tom,
>
> Please pull u-boot-sunxi/master into master, highlights:
>
> 1) Kconfig cleanup by Ian
> 2) device-model support for gpio and uarts by Simon
>
> The following changes since commit 26f195c71252e98aebfffd5cfa994a4475559370:
>
> ARM: kwimage: fix v0 format (2014-11-04 15:03:07 -0500)
>
> are available in the git repository at:
>
> http://git.denx.de/u-boot-sunxi.git
>
> for you to fetch changes up to 44fd5914fb08ffcd96c9db7e448787f1d2aed801:
>
> dm: sunxi: Request USB vbus gpio (2014-11-05 13:10:22 +0100)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141105/d0d8aa8e/attachment.pgp>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] Please pull u-boot-sunxi/master into master
@ 2014-11-13 15:04 Hans de Goede
2014-11-13 15:47 ` Tom Rini
0 siblings, 1 reply; 7+ messages in thread
From: Hans de Goede @ 2014-11-13 15:04 UTC (permalink / raw)
To: u-boot
Hi Tom,
Please pull u-boot-sunxi/master into master, highlights:
1) sun6i dram init / SPL support, allowing full-boot of sun6i SoCs with just u-boot + linux
2) sun6i ehci support
3) A bugfix for the gmac on the bananapi
The following changes since commit 63f7af9a4cfb4a3b9136674c6612c6d13957c2cd:
Merge branch 'master' of git://git.denx.de/u-boot-uniphier (2014-11-11 15:49:10 -0500)
are available in the git repository at:
http://git.denx.de/u-boot-sunxi.git master
for you to fetch changes up to 64a97599b79e277600bc6f1b22cf48aa04ee9bd0:
sunxi: gmac: Update bananapi fixup to the new CONFIG_TARGET_<BOARD> structure (2014-11-13 14:49:02 +0100)
----------------------------------------------------------------
Hans de Goede (9):
sun6i: Add clock functions needed for SPL / DRAM init
sun6i: Add cpucfg register definitions
sun4i: Rename dram files to dram_sun4i.x
sun6i: Add dram initialization code
sun6i: Poke magic sram controller register to avoid cache issues
sun6i: Enable SPL
sun6i: Add Mele M9 board
sunxi: ehci: Add proper Kconfig options to select the usb Vbus gpio-s
sun6i: ehci: Add sun6i ehci support
Oliver Schinagl (2):
sun6i: Add new p2wi controller driver
sun6i: Add basic axp221 driver
Zoltan HERPAI (1):
sunxi: gmac: Update bananapi fixup to the new CONFIG_TARGET_<BOARD> structure
arch/arm/cpu/armv7/sunxi/Makefile | 8 +-
arch/arm/cpu/armv7/sunxi/board.c | 5 +
arch/arm/cpu/armv7/sunxi/clock_sun6i.c | 77 ++++
arch/arm/cpu/armv7/sunxi/{dram.c => dram_sun4i.c} | 0
arch/arm/cpu/armv7/sunxi/dram_sun6i.c | 435 ++++++++++++++++++++++
arch/arm/cpu/armv7/sunxi/p2wi.c | 117 ++++++
arch/arm/cpu/armv7/sunxi/psci.S | 4 +-
arch/arm/include/asm/arch-sunxi/clock.h | 1 +
arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 3 +
arch/arm/include/asm/arch-sunxi/clock_sun6i.h | 38 +-
arch/arm/include/asm/arch-sunxi/cpu.h | 19 +-
arch/arm/include/asm/arch-sunxi/cpucfg_sun6i.h | 67 ++++
arch/arm/include/asm/arch-sunxi/dram.h | 171 +--------
arch/arm/include/asm/arch-sunxi/dram_sun4i.h | 182 +++++++++
arch/arm/include/asm/arch-sunxi/dram_sun6i.h | 359 ++++++++++++++++++
arch/arm/include/asm/arch-sunxi/gpio.h | 3 +
arch/arm/include/asm/arch-sunxi/p2wi.h | 140 +++++++
arch/arm/include/asm/arch-sunxi/prcm.h | 1 +
board/sunxi/Kconfig | 21 ++
board/sunxi/MAINTAINERS | 1 +
board/sunxi/board.c | 26 ++
board/sunxi/gmac.c | 2 +-
configs/A10s-OLinuXino-M_defconfig | 3 +-
configs/A13-OLinuXinoM_defconfig | 3 +-
configs/A13-OLinuXino_defconfig | 3 +-
configs/Auxtek-T004_defconfig | 3 +-
configs/Colombus_defconfig | 9 +-
configs/Mele_M9_defconfig | 18 +
configs/ba10_tv_box_defconfig | 3 +-
configs/r7-tv-dongle_defconfig | 3 +-
drivers/power/Kconfig | 47 +++
drivers/power/Makefile | 1 +
drivers/power/axp221.c | 186 +++++++++
drivers/usb/host/ehci-sunxi.c | 80 ++--
include/axp221.h | 50 +++
include/configs/sun4i.h | 7 -
include/configs/sun6i.h | 6 +
include/configs/sun7i.h | 7 -
38 files changed, 1883 insertions(+), 226 deletions(-)
rename arch/arm/cpu/armv7/sunxi/{dram.c => dram_sun4i.c} (100%)
create mode 100644 arch/arm/cpu/armv7/sunxi/dram_sun6i.c
create mode 100644 arch/arm/cpu/armv7/sunxi/p2wi.c
create mode 100644 arch/arm/include/asm/arch-sunxi/cpucfg_sun6i.h
create mode 100644 arch/arm/include/asm/arch-sunxi/dram_sun4i.h
create mode 100644 arch/arm/include/asm/arch-sunxi/dram_sun6i.h
create mode 100644 arch/arm/include/asm/arch-sunxi/p2wi.h
create mode 100644 configs/Mele_M9_defconfig
create mode 100644 drivers/power/axp221.c
create mode 100644 include/axp221.h
Regards,
Hans
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] Please pull u-boot-sunxi/master into master
2014-11-13 15:04 [U-Boot] Please pull u-boot-sunxi/master into master Hans de Goede
@ 2014-11-13 15:47 ` Tom Rini
0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-11-13 15:47 UTC (permalink / raw)
To: u-boot
On Thu, Nov 13, 2014 at 04:04:25PM +0100, Hans de Goede wrote:
> Hi Tom,
>
> Please pull u-boot-sunxi/master into master, highlights:
>
> 1) sun6i dram init / SPL support, allowing full-boot of sun6i SoCs with just u-boot + linux
> 2) sun6i ehci support
> 3) A bugfix for the gmac on the bananapi
>
> The following changes since commit 63f7af9a4cfb4a3b9136674c6612c6d13957c2cd:
>
> Merge branch 'master' of git://git.denx.de/u-boot-uniphier (2014-11-11 15:49:10 -0500)
>
> are available in the git repository at:
>
> http://git.denx.de/u-boot-sunxi.git master
>
> for you to fetch changes up to 64a97599b79e277600bc6f1b22cf48aa04ee9bd0:
>
> sunxi: gmac: Update bananapi fixup to the new CONFIG_TARGET_<BOARD> structure (2014-11-13 14:49:02 +0100)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141113/43c1a633/attachment.pgp>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] Please pull u-boot-sunxi/master into master
@ 2014-11-20 20:52 Hans de Goede
0 siblings, 0 replies; 7+ messages in thread
From: Hans de Goede @ 2014-11-20 20:52 UTC (permalink / raw)
To: u-boot
Hi Tom,
Please pull u-boot-sunxi/master into master, highlights:
1) hdmi console (with usb keyboard) support with simplefb support so the kernel
can use the framebuffer too
2) A small bugfix for ahci support
The following changes since commit f196044dfd64745a163773c6c746f9e149ace127:
ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500)
are available in the git repository at:
http://git.denx.de/u-boot-sunxi.git master
for you to fetch changes up to 4de8eaa34fd2b74636eba9962889daf996175633:
sunxi: Add usb keyboard Kconfig option (2014-11-20 21:35:20 +0100)
----------------------------------------------------------------
Hans de Goede (8):
sun7i: Drop CONFIG_ARMV7_PSCI_NR_CPUS
sunxi: ahci: Add a delay after enabling target power
sun4i: Rename dram_clk_cfg to dram_clk_gate
sunxi: Add video pll clock functions
sunxi: video: Add sun6i support
fdt_support: Add a fdt_setup_simplefb_node helper function
common/lcd: Make lcd_dt_simplefb_configure_node use fdt_setup_simplefb_node
sunxi: Add usb keyboard Kconfig option
Luc Verhaegen (2):
sunxi: video: Add cfb console driver for sunxi
sunxi: video: Add simplefb support
arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 27 ++
arch/arm/cpu/armv7/sunxi/clock_sun6i.c | 29 ++
arch/arm/cpu/armv7/sunxi/dram_sun4i.c | 4 +-
arch/arm/include/asm/arch-sunxi/clock.h | 2 +
arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 47 ++-
arch/arm/include/asm/arch-sunxi/clock_sun6i.h | 59 +++-
arch/arm/include/asm/arch-sunxi/display.h | 200 ++++++++++++
board/sunxi/Kconfig | 14 +
board/sunxi/ahci.c | 2 +
board/sunxi/board.c | 10 +
common/fdt_support.c | 62 ++++
common/lcd.c | 47 +--
configs/A13-OLinuXinoM_defconfig | 2 +
configs/A13-OLinuXino_defconfig | 2 +
configs/Colombus_defconfig | 1 +
configs/Ippo_q8h_v5_defconfig | 2 +
drivers/video/Makefile | 1 +
drivers/video/sunxi_display.c | 451 ++++++++++++++++++++++++++
include/configs/sun7i.h | 1 -
include/configs/sunxi-common.h | 62 ++++
include/fdt_support.h | 3 +
21 files changed, 981 insertions(+), 47 deletions(-)
create mode 100644 arch/arm/include/asm/arch-sunxi/display.h
create mode 100644 drivers/video/sunxi_display.c
Regards,
Hans
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-11-20 20:52 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13 15:04 [U-Boot] Please pull u-boot-sunxi/master into master Hans de Goede
2014-11-13 15:47 ` Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2014-11-20 20:52 Hans de Goede
2014-11-05 12:19 Hans de Goede
2014-11-05 15:59 ` Tom Rini
2014-10-24 8:06 Hans de Goede
2014-10-27 0:36 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox