* [U-Boot] Pull request: u-boot-spi/sunxi
@ 2016-11-24 14:35 Jagan Teki
2016-11-24 14:55 ` Maxime Ripard
0 siblings, 1 reply; 4+ messages in thread
From: Jagan Teki @ 2016-11-24 14:35 UTC (permalink / raw)
To: u-boot
Hi Tom,
These are the pending patches, from u-boot-sunxi/next.
Will send sunxi PR on top of u-boot-sunxi repo once I get the access,
meanwhile please take this PR.
Hans, Let me know if I miss any patches from next.
thanks!
Jagan.
The following changes since commit fc127d184aea293ec415dd66e3282dba0b66c5f3:
colibri_pxa270: drop edit, elf, fpga, hush, regex et al. for space reason (2016-11-23 13:53:20 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-spi.git sunxi
for you to fetch changes up to e68a831cacc85ea1da274f3c8d19bb98c1141a97:
nand: sunxi: Add options for the SPL NAND configuration (2016-11-24 19:40:49 +0530)
----------------------------------------------------------------
Boris Brezillon (1):
mtd: nand: add support for the TC58NVG2S0H chip
Chen-Yu Tsai (9):
ARM: PSCI: Set ARMV7_PSCI_NR_CPUS default to 8 for sun9i/A80
sunxi: Add CCI-400 and CPUCFG registers base address for sun9i/A80
sunxi: Add base address of secure SRAM B for sun9i/A80
sunxi: Use secure SRAM B for secure RAM for sun9i/A80
sunxi: Add PRCM register definition for sun9i/A80
sunxi: Add CPUCFG register definitions for sun9i/A80
sunxi: Add support for TZPC on sun9i/A80
sunxi: Add basic PSCI implementation for A80
sunxi: Enable PSCI on sun9i/A80
Emmanuel Vadot (1):
sunxi: mmc: Set CONFIG_SYS_MMC_MAX_DEVICE
Hans de Goede (1):
sunxi: Mele_M5_defconfig: Drop non existing STATUSLED setting
Jelle van der Waa (1):
sunxi: Use the available Kconfig option for AHCI
Marcel Ziswiler (1):
colibri_pxa270: transition to driver model for serial
Maxime Ripard (3):
sunxi: Sync GR8 DTS and AXP209 with the kernel
tools: sunxi: Add spl image builder
nand: sunxi: Add options for the SPL NAND configuration
Yann E. MORIN (1):
arm: sunxi: do not force USB for arch-sunxi
arch/arm/Kconfig | 10 +-
arch/arm/cpu/armv7/Kconfig | 1 +
arch/arm/cpu/armv7/sunxi/Makefile | 5 +
arch/arm/cpu/armv7/sunxi/psci-mcpm.c | 234 +++++
arch/arm/cpu/armv7/sunxi/tzpc.c | 6 +
arch/arm/dts/Makefile | 1 +
arch/arm/dts/axp209.dtsi | 6 +
arch/arm/dts/ntc-gr8-chip-pro.dts | 266 ++++++
arch/arm/dts/ntc-gr8.dtsi | 1132 ++++++++++++++++++++++++
arch/arm/include/asm/arch-sunxi/cpu_sun9i.h | 5 +
arch/arm/include/asm/arch-sunxi/cpucfg_sun9i.h | 51 ++
arch/arm/include/asm/arch-sunxi/prcm_sun9i.h | 55 ++
arch/arm/include/asm/arch-sunxi/tzpc.h | 4 +
arch/arm/mach-sunxi/board.c | 3 +-
board/sunxi/Kconfig | 4 +
board/toradex/colibri_pxa270/colibri_pxa270.c | 18 +-
configs/A10-OLinuXino-Lime_defconfig | 3 +-
configs/A20-OLinuXino-Lime2_defconfig | 3 +-
configs/A20-OLinuXino-Lime_defconfig | 3 +-
configs/A20-OLinuXino_MICRO_defconfig | 3 +-
configs/A20-Olimex-SOM-EVB_defconfig | 3 +-
configs/Bananapi_defconfig | 3 +-
configs/Bananapro_defconfig | 3 +-
configs/Cubieboard2_defconfig | 3 +-
configs/Cubieboard_defconfig | 3 +-
configs/Cubietruck_defconfig | 3 +-
configs/Itead_Ibox_A20_defconfig | 3 +-
configs/Lamobo_R1_defconfig | 3 +-
configs/Linksprite_pcDuino3_Nano_defconfig | 3 +-
configs/Linksprite_pcDuino3_defconfig | 3 +-
configs/Marsboard_A10_defconfig | 3 +-
configs/Mele_A1000_defconfig | 3 +-
configs/Mele_M5_defconfig | 3 +-
configs/Orangepi_defconfig | 3 +-
configs/Orangepi_mini_defconfig | 3 +-
configs/Wits_Pro_A20_DKT_defconfig | 3 +-
configs/colibri_pxa270_defconfig | 2 +
drivers/mtd/nand/Kconfig | 16 +
drivers/mtd/nand/nand_ids.c | 3 +
include/configs/colibri_pxa270.h | 2 -
include/configs/sun9i.h | 4 +
include/configs/sunxi-common.h | 1 +
scripts/config_whitelist.txt | 1 -
tools/.gitignore | 1 +
tools/Makefile | 1 +
tools/sunxi-spl-image-builder.c | 1117 +++++++++++++++++++++++
46 files changed, 2978 insertions(+), 31 deletions(-)
create mode 100644 arch/arm/cpu/armv7/sunxi/psci-mcpm.c
create mode 100644 arch/arm/dts/ntc-gr8-chip-pro.dts
create mode 100644 arch/arm/dts/ntc-gr8.dtsi
create mode 100644 arch/arm/include/asm/arch-sunxi/cpucfg_sun9i.h
create mode 100644 arch/arm/include/asm/arch-sunxi/prcm_sun9i.h
create mode 100644 tools/sunxi-spl-image-builder.c
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Pull request: u-boot-spi/sunxi
2016-11-24 14:35 [U-Boot] Pull request: u-boot-spi/sunxi Jagan Teki
@ 2016-11-24 14:55 ` Maxime Ripard
2016-11-24 16:00 ` Hans de Goede
0 siblings, 1 reply; 4+ messages in thread
From: Maxime Ripard @ 2016-11-24 14:55 UTC (permalink / raw)
To: u-boot
On Thu, Nov 24, 2016 at 08:05:55PM +0530, Jagan Teki wrote:
> Hi Tom,
>
> These are the pending patches, from u-boot-sunxi/next.
>
> Will send sunxi PR on top of u-boot-sunxi repo once I get the access,
> meanwhile please take this PR.
>
> Hans, Let me know if I miss any patches from next.
>
> thanks!
> Jagan.
>
> The following changes since commit fc127d184aea293ec415dd66e3282dba0b66c5f3:
>
> colibri_pxa270: drop edit, elf, fpga, hush, regex et al. for space reason (2016-11-23 13:53:20 +0100)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-spi.git sunxi
>
> for you to fetch changes up to e68a831cacc85ea1da274f3c8d19bb98c1141a97:
>
> nand: sunxi: Add options for the SPL NAND configuration (2016-11-24 19:40:49 +0530)
>
> ----------------------------------------------------------------
> Boris Brezillon (1):
> mtd: nand: add support for the TC58NVG2S0H chip
>
> Chen-Yu Tsai (9):
> ARM: PSCI: Set ARMV7_PSCI_NR_CPUS default to 8 for sun9i/A80
> sunxi: Add CCI-400 and CPUCFG registers base address for sun9i/A80
> sunxi: Add base address of secure SRAM B for sun9i/A80
> sunxi: Use secure SRAM B for secure RAM for sun9i/A80
> sunxi: Add PRCM register definition for sun9i/A80
> sunxi: Add CPUCFG register definitions for sun9i/A80
> sunxi: Add support for TZPC on sun9i/A80
> sunxi: Add basic PSCI implementation for A80
> sunxi: Enable PSCI on sun9i/A80
>
> Emmanuel Vadot (1):
> sunxi: mmc: Set CONFIG_SYS_MMC_MAX_DEVICE
>
> Hans de Goede (1):
> sunxi: Mele_M5_defconfig: Drop non existing STATUSLED setting
>
> Jelle van der Waa (1):
> sunxi: Use the available Kconfig option for AHCI
>
> Marcel Ziswiler (1):
> colibri_pxa270: transition to driver model for serial
>
> Maxime Ripard (3):
> sunxi: Sync GR8 DTS and AXP209 with the kernel
> tools: sunxi: Add spl image builder
> nand: sunxi: Add options for the SPL NAND configuration
Hmmm, I'm not sure why it's in though.
I sent an update version of those since the first iteration had
issues.
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161124/ece82f6f/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Pull request: u-boot-spi/sunxi
2016-11-24 14:55 ` Maxime Ripard
@ 2016-11-24 16:00 ` Hans de Goede
2016-11-24 18:36 ` Jagan Teki
0 siblings, 1 reply; 4+ messages in thread
From: Hans de Goede @ 2016-11-24 16:00 UTC (permalink / raw)
To: u-boot
Hi,
On 24-11-16 15:55, Maxime Ripard wrote:
> On Thu, Nov 24, 2016 at 08:05:55PM +0530, Jagan Teki wrote:
>> Hi Tom,
>>
>> These are the pending patches, from u-boot-sunxi/next.
>>
>> Will send sunxi PR on top of u-boot-sunxi repo once I get the access,
>> meanwhile please take this PR.
>>
>> Hans, Let me know if I miss any patches from next.
>>
>> thanks!
>> Jagan.
>>
>> The following changes since commit fc127d184aea293ec415dd66e3282dba0b66c5f3:
>>
>> colibri_pxa270: drop edit, elf, fpga, hush, regex et al. for space reason (2016-11-23 13:53:20 +0100)
>>
>> are available in the git repository at:
>>
>> git://git.denx.de/u-boot-spi.git sunxi
>>
>> for you to fetch changes up to e68a831cacc85ea1da274f3c8d19bb98c1141a97:
>>
>> nand: sunxi: Add options for the SPL NAND configuration (2016-11-24 19:40:49 +0530)
>>
>> ----------------------------------------------------------------
>> Boris Brezillon (1):
>> mtd: nand: add support for the TC58NVG2S0H chip
>>
>> Chen-Yu Tsai (9):
>> ARM: PSCI: Set ARMV7_PSCI_NR_CPUS default to 8 for sun9i/A80
>> sunxi: Add CCI-400 and CPUCFG registers base address for sun9i/A80
>> sunxi: Add base address of secure SRAM B for sun9i/A80
>> sunxi: Use secure SRAM B for secure RAM for sun9i/A80
>> sunxi: Add PRCM register definition for sun9i/A80
>> sunxi: Add CPUCFG register definitions for sun9i/A80
>> sunxi: Add support for TZPC on sun9i/A80
>> sunxi: Add basic PSCI implementation for A80
>> sunxi: Enable PSCI on sun9i/A80
>>
>> Emmanuel Vadot (1):
>> sunxi: mmc: Set CONFIG_SYS_MMC_MAX_DEVICE
>>
>> Hans de Goede (1):
>> sunxi: Mele_M5_defconfig: Drop non existing STATUSLED setting
>>
>> Jelle van der Waa (1):
>> sunxi: Use the available Kconfig option for AHCI
>>
>> Marcel Ziswiler (1):
>> colibri_pxa270: transition to driver model for serial
>>
>> Maxime Ripard (3):
>> sunxi: Sync GR8 DTS and AXP209 with the kernel
>> tools: sunxi: Add spl image builder
>> nand: sunxi: Add options for the SPL NAND configuration
>
> Hmmm, I'm not sure why it's in though.
>
> I sent an update version of those since the first iteration had
> issues.
Probably my bad, I put this in u-boot-sunxi/next before I stepped
down as maintainer. Which of these 3 patches need to be dropped
exactly?
Otherwise this pull-req looks good. Jagan, thank you for your
work on this!
Regards,
Hans
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Pull request: u-boot-spi/sunxi
2016-11-24 16:00 ` Hans de Goede
@ 2016-11-24 18:36 ` Jagan Teki
0 siblings, 0 replies; 4+ messages in thread
From: Jagan Teki @ 2016-11-24 18:36 UTC (permalink / raw)
To: u-boot
On Thu, Nov 24, 2016 at 9:30 PM, Hans de Goede <hdegoede@redhat.com> wrote:
> Hi,
>
>
> On 24-11-16 15:55, Maxime Ripard wrote:
>>
>> On Thu, Nov 24, 2016 at 08:05:55PM +0530, Jagan Teki wrote:
>>>
>>> Hi Tom,
>>>
>>> These are the pending patches, from u-boot-sunxi/next.
>>>
>>> Will send sunxi PR on top of u-boot-sunxi repo once I get the access,
>>> meanwhile please take this PR.
>>>
>>> Hans, Let me know if I miss any patches from next.
>>>
>>> thanks!
>>> Jagan.
>>>
>>> The following changes since commit
>>> fc127d184aea293ec415dd66e3282dba0b66c5f3:
>>>
>>> colibri_pxa270: drop edit, elf, fpga, hush, regex et al. for space
>>> reason (2016-11-23 13:53:20 +0100)
>>>
>>> are available in the git repository at:
>>>
>>> git://git.denx.de/u-boot-spi.git sunxi
>>>
>>> for you to fetch changes up to e68a831cacc85ea1da274f3c8d19bb98c1141a97:
>>>
>>> nand: sunxi: Add options for the SPL NAND configuration (2016-11-24
>>> 19:40:49 +0530)
>>>
>>> ----------------------------------------------------------------
>>> Boris Brezillon (1):
>>> mtd: nand: add support for the TC58NVG2S0H chip
>>>
>>> Chen-Yu Tsai (9):
>>> ARM: PSCI: Set ARMV7_PSCI_NR_CPUS default to 8 for sun9i/A80
>>> sunxi: Add CCI-400 and CPUCFG registers base address for sun9i/A80
>>> sunxi: Add base address of secure SRAM B for sun9i/A80
>>> sunxi: Use secure SRAM B for secure RAM for sun9i/A80
>>> sunxi: Add PRCM register definition for sun9i/A80
>>> sunxi: Add CPUCFG register definitions for sun9i/A80
>>> sunxi: Add support for TZPC on sun9i/A80
>>> sunxi: Add basic PSCI implementation for A80
>>> sunxi: Enable PSCI on sun9i/A80
>>>
>>> Emmanuel Vadot (1):
>>> sunxi: mmc: Set CONFIG_SYS_MMC_MAX_DEVICE
>>>
>>> Hans de Goede (1):
>>> sunxi: Mele_M5_defconfig: Drop non existing STATUSLED setting
>>>
>>> Jelle van der Waa (1):
>>> sunxi: Use the available Kconfig option for AHCI
>>>
>>> Marcel Ziswiler (1):
>>> colibri_pxa270: transition to driver model for serial
>>>
>>> Maxime Ripard (3):
>>> sunxi: Sync GR8 DTS and AXP209 with the kernel
>>> tools: sunxi: Add spl image builder
>>> nand: sunxi: Add options for the SPL NAND configuration
>>
>>
>> Hmmm, I'm not sure why it's in though.
>>
>> I sent an update version of those since the first iteration had
>> issues.
>
>
> Probably my bad, I put this in u-boot-sunxi/next before I stepped
> down as maintainer. Which of these 3 patches need to be dropped
> exactly?
>
> Otherwise this pull-req looks good. Jagan, thank you for your
> work on this!
OK, couldn't see Maxime latest series. Will remove these 3 and send the PR.
thanks!
--
Jagan Teki
Free Software Engineer | www.openedev.com
U-Boot, Linux | Upstream Maintainer
Hyderabad, India.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-11-24 18:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-24 14:35 [U-Boot] Pull request: u-boot-spi/sunxi Jagan Teki
2016-11-24 14:55 ` Maxime Ripard
2016-11-24 16:00 ` Hans de Goede
2016-11-24 18:36 ` Jagan Teki
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.