* [PULL u-boot] Please pull u-boot-amlogic-20190411
@ 2019-04-11 11:16 ` Neil Armstrong
0 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2019-04-11 11:16 UTC (permalink / raw)
To: trini; +Cc: u-boot-amlogic, U-Boot Mailing List, baylibre-upstreaming
Hi Tom,
This PR adds support for 3 more Amlogic boards, support printing SoC
revision information, add AXG family support for I2C and Reset, then
fixup the AXG pinctrl defintions.
Thanks,
Neil
The following changes since commit 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5:
Merge branch '2019-04-09-master-imports-fs' (2019-04-10 08:18:18 -0400)
are available in the Git repository at:
git://git.denx.de/u-boot-amlogic.git tags/u-boot-amlogic-20190411
for you to fetch changes up to 2c4e3cf21257f962e69264fe91ff2cc23cbd041a:
pinctrl: meson: axg: Fix PIN and BANK offsets (2019-04-10 16:54:59 +0200)
----------------------------------------------------------------
- Add support for Amlogic p200 & p201 Reference Designs
- Add Amlogic SoC information display
- Add support for the Libretech-AC AML-S805X-AC board
- Add Amlogic AXG reset compatible
- Add I2C support for Amlogic AXG
- Fix AXG PIN and BANK pinctrl definitions
----------------------------------------------------------------
Guillaume La Roque (2):
i2c: meson: add configurable divider factors
pinctrl: meson: axg: Fix PIN and BANK offsets
Julien Masson (1):
ARM: meson: display Amlogic SoC Information
Mohammad Rasim (5):
ARM: board: meson: rename odroid-c2 to p200
ARM: dts: meson: add p200 and p201 boards
ARM: dts: meson: add u-boot.dtsi for p200 and p201
ARM: board: meson: add p200 board
ARM: board: meson: add p201 board
Neil Armstrong (3):
ARM: dts: Import libretech-ac DT from Linux 5.0
boards: Amlogic: Add support for Libretech-AC
reset-meson: Add AXG reset compatible
arch/arm/dts/Makefile | 3 +
arch/arm/dts/meson-gxbb-p200-u-boot.dtsi | 7 +
arch/arm/dts/meson-gxbb-p200.dts | 99 ++++++
arch/arm/dts/meson-gxbb-p201-u-boot.dtsi | 7 +
arch/arm/dts/meson-gxbb-p201.dts | 26 ++
arch/arm/dts/meson-gxbb-p20x.dtsi | 247 ++++++++++++++
arch/arm/dts/meson-gxl-s805x-libretech-ac.dts | 248 ++++++++++++++
arch/arm/dts/meson-gxl.dtsi | 70 +++-
arch/arm/mach-meson/Kconfig | 2 +-
arch/arm/mach-meson/Makefile | 2 +-
arch/arm/mach-meson/board-info.c | 166 ++++++++++
board/amlogic/{odroid-c2 => p200}/MAINTAINERS | 6 +-
board/amlogic/{odroid-c2 => p200}/Makefile | 2 +-
board/amlogic/{odroid-c2 => p200}/README.nanopi-k2 | 0
board/amlogic/{odroid-c2 => p200}/README.odroid-c2 | 0
board/amlogic/p200/README.p200 | 103 ++++++
.../amlogic/{odroid-c2/odroid-c2.c => p200/p200.c} | 0
board/amlogic/p201/MAINTAINERS | 5 +
board/amlogic/p201/Makefile | 5 +
board/amlogic/p201/README.p201 | 103 ++++++
board/amlogic/p201/p201.c | 43 +++
board/amlogic/p212/MAINTAINERS | 1 +
board/amlogic/p212/README.libretech-ac | 103 ++++++
configs/khadas-vim2_defconfig | 2 +-
configs/khadas-vim_defconfig | 2 +-
configs/libretech-ac_defconfig | 74 +++++
configs/libretech-cc_defconfig | 2 +-
configs/nanopi-k2_defconfig | 2 +-
configs/odroid-c2_defconfig | 2 +-
configs/p200_defconfig | 41 +++
configs/p201_defconfig | 41 +++
configs/p212_defconfig | 2 +-
configs/s400_defconfig | 2 +-
drivers/i2c/meson_i2c.c | 30 +-
drivers/pinctrl/meson/pinctrl-meson-axg.c | 358 ++++++++++-----------
drivers/reset/reset-meson.c | 1 +
include/configs/libretech-ac.h | 24 ++
37 files changed, 1625 insertions(+), 206 deletions(-)
create mode 100644 arch/arm/dts/meson-gxbb-p200-u-boot.dtsi
create mode 100644 arch/arm/dts/meson-gxbb-p200.dts
create mode 100644 arch/arm/dts/meson-gxbb-p201-u-boot.dtsi
create mode 100644 arch/arm/dts/meson-gxbb-p201.dts
create mode 100644 arch/arm/dts/meson-gxbb-p20x.dtsi
create mode 100644 arch/arm/dts/meson-gxl-s805x-libretech-ac.dts
create mode 100644 arch/arm/mach-meson/board-info.c
rename board/amlogic/{odroid-c2 => p200}/MAINTAINERS (70%)
rename board/amlogic/{odroid-c2 => p200}/Makefile (82%)
rename board/amlogic/{odroid-c2 => p200}/README.nanopi-k2 (100%)
rename board/amlogic/{odroid-c2 => p200}/README.odroid-c2 (100%)
create mode 100644 board/amlogic/p200/README.p200
rename board/amlogic/{odroid-c2/odroid-c2.c => p200/p200.c} (100%)
create mode 100644 board/amlogic/p201/MAINTAINERS
create mode 100644 board/amlogic/p201/Makefile
create mode 100644 board/amlogic/p201/README.p201
create mode 100644 board/amlogic/p201/p201.c
create mode 100644 board/amlogic/p212/README.libretech-ac
create mode 100644 configs/libretech-ac_defconfig
create mode 100644 configs/p200_defconfig
create mode 100644 configs/p201_defconfig
create mode 100644 include/configs/libretech-ac.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PULL u-boot] Please pull u-boot-amlogic-20190411
@ 2019-04-11 11:16 ` Neil Armstrong
0 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2019-04-11 11:16 UTC (permalink / raw)
To: u-boot
Hi Tom,
This PR adds support for 3 more Amlogic boards, support printing SoC
revision information, add AXG family support for I2C and Reset, then
fixup the AXG pinctrl defintions.
Thanks,
Neil
The following changes since commit 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5:
Merge branch '2019-04-09-master-imports-fs' (2019-04-10 08:18:18 -0400)
are available in the Git repository at:
git://git.denx.de/u-boot-amlogic.git tags/u-boot-amlogic-20190411
for you to fetch changes up to 2c4e3cf21257f962e69264fe91ff2cc23cbd041a:
pinctrl: meson: axg: Fix PIN and BANK offsets (2019-04-10 16:54:59 +0200)
----------------------------------------------------------------
- Add support for Amlogic p200 & p201 Reference Designs
- Add Amlogic SoC information display
- Add support for the Libretech-AC AML-S805X-AC board
- Add Amlogic AXG reset compatible
- Add I2C support for Amlogic AXG
- Fix AXG PIN and BANK pinctrl definitions
----------------------------------------------------------------
Guillaume La Roque (2):
i2c: meson: add configurable divider factors
pinctrl: meson: axg: Fix PIN and BANK offsets
Julien Masson (1):
ARM: meson: display Amlogic SoC Information
Mohammad Rasim (5):
ARM: board: meson: rename odroid-c2 to p200
ARM: dts: meson: add p200 and p201 boards
ARM: dts: meson: add u-boot.dtsi for p200 and p201
ARM: board: meson: add p200 board
ARM: board: meson: add p201 board
Neil Armstrong (3):
ARM: dts: Import libretech-ac DT from Linux 5.0
boards: Amlogic: Add support for Libretech-AC
reset-meson: Add AXG reset compatible
arch/arm/dts/Makefile | 3 +
arch/arm/dts/meson-gxbb-p200-u-boot.dtsi | 7 +
arch/arm/dts/meson-gxbb-p200.dts | 99 ++++++
arch/arm/dts/meson-gxbb-p201-u-boot.dtsi | 7 +
arch/arm/dts/meson-gxbb-p201.dts | 26 ++
arch/arm/dts/meson-gxbb-p20x.dtsi | 247 ++++++++++++++
arch/arm/dts/meson-gxl-s805x-libretech-ac.dts | 248 ++++++++++++++
arch/arm/dts/meson-gxl.dtsi | 70 +++-
arch/arm/mach-meson/Kconfig | 2 +-
arch/arm/mach-meson/Makefile | 2 +-
arch/arm/mach-meson/board-info.c | 166 ++++++++++
board/amlogic/{odroid-c2 => p200}/MAINTAINERS | 6 +-
board/amlogic/{odroid-c2 => p200}/Makefile | 2 +-
board/amlogic/{odroid-c2 => p200}/README.nanopi-k2 | 0
board/amlogic/{odroid-c2 => p200}/README.odroid-c2 | 0
board/amlogic/p200/README.p200 | 103 ++++++
.../amlogic/{odroid-c2/odroid-c2.c => p200/p200.c} | 0
board/amlogic/p201/MAINTAINERS | 5 +
board/amlogic/p201/Makefile | 5 +
board/amlogic/p201/README.p201 | 103 ++++++
board/amlogic/p201/p201.c | 43 +++
board/amlogic/p212/MAINTAINERS | 1 +
board/amlogic/p212/README.libretech-ac | 103 ++++++
configs/khadas-vim2_defconfig | 2 +-
configs/khadas-vim_defconfig | 2 +-
configs/libretech-ac_defconfig | 74 +++++
configs/libretech-cc_defconfig | 2 +-
configs/nanopi-k2_defconfig | 2 +-
configs/odroid-c2_defconfig | 2 +-
configs/p200_defconfig | 41 +++
configs/p201_defconfig | 41 +++
configs/p212_defconfig | 2 +-
configs/s400_defconfig | 2 +-
drivers/i2c/meson_i2c.c | 30 +-
drivers/pinctrl/meson/pinctrl-meson-axg.c | 358 ++++++++++-----------
drivers/reset/reset-meson.c | 1 +
include/configs/libretech-ac.h | 24 ++
37 files changed, 1625 insertions(+), 206 deletions(-)
create mode 100644 arch/arm/dts/meson-gxbb-p200-u-boot.dtsi
create mode 100644 arch/arm/dts/meson-gxbb-p200.dts
create mode 100644 arch/arm/dts/meson-gxbb-p201-u-boot.dtsi
create mode 100644 arch/arm/dts/meson-gxbb-p201.dts
create mode 100644 arch/arm/dts/meson-gxbb-p20x.dtsi
create mode 100644 arch/arm/dts/meson-gxl-s805x-libretech-ac.dts
create mode 100644 arch/arm/mach-meson/board-info.c
rename board/amlogic/{odroid-c2 => p200}/MAINTAINERS (70%)
rename board/amlogic/{odroid-c2 => p200}/Makefile (82%)
rename board/amlogic/{odroid-c2 => p200}/README.nanopi-k2 (100%)
rename board/amlogic/{odroid-c2 => p200}/README.odroid-c2 (100%)
create mode 100644 board/amlogic/p200/README.p200
rename board/amlogic/{odroid-c2/odroid-c2.c => p200/p200.c} (100%)
create mode 100644 board/amlogic/p201/MAINTAINERS
create mode 100644 board/amlogic/p201/Makefile
create mode 100644 board/amlogic/p201/README.p201
create mode 100644 board/amlogic/p201/p201.c
create mode 100644 board/amlogic/p212/README.libretech-ac
create mode 100644 configs/libretech-ac_defconfig
create mode 100644 configs/p200_defconfig
create mode 100644 configs/p201_defconfig
create mode 100644 include/configs/libretech-ac.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PULL u-boot] Please pull u-boot-amlogic-20190411
2019-04-11 11:16 ` [U-Boot] " Neil Armstrong
@ 2019-04-11 14:52 ` Tom Rini
-1 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2019-04-11 14:52 UTC (permalink / raw)
To: Neil Armstrong; +Cc: u-boot-amlogic, U-Boot Mailing List, baylibre-upstreaming
[-- Attachment #1: Type: text/plain, Size: 1571 bytes --]
On Thu, Apr 11, 2019 at 01:16:26PM +0200, Neil Armstrong wrote:
> Hi Tom,
>
> This PR adds support for 3 more Amlogic boards, support printing SoC
> revision information, add AXG family support for I2C and Reset, then
> fixup the AXG pinctrl defintions.
>
> Thanks,
> Neil
>
> The following changes since commit 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5:
>
> Merge branch '2019-04-09-master-imports-fs' (2019-04-10 08:18:18 -0400)
>
> are available in the Git repository at:
>
> git://git.denx.de/u-boot-amlogic.git tags/u-boot-amlogic-20190411
>
> for you to fetch changes up to 2c4e3cf21257f962e69264fe91ff2cc23cbd041a:
>
> pinctrl: meson: axg: Fix PIN and BANK offsets (2019-04-10 16:54:59 +0200)
>
NAK:
aarch64: w+ libretech-ac
+(libretech-ac) sandbox_timer_add_offset(test_add_time); \
+(libretech-ac) ^
+(libretech-ac) include/regmap.h:289:2: note: in expansion of macro 'regmap_read_poll_timeout_test'
+(libretech-ac) regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \
+(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+(libretech-ac) drivers/spi/meson_spifc.c:169:8: note: in expansion of macro 'regmap_read_poll_timeout'
+(libretech-ac) ret = regmap_read_poll_timeout(spifc->regmap, REG_SLAVE, data,
+(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~
w+(libretech-ac) drivers/spi/meson_spifc.c: In function 'meson_spifc_txrx':
w+(libretech-ac) include/regmap.h:277:4: warning: implicit declaration of function 'sandbox_timer_add_offset' [-Wimplicit-function-declaration]
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PULL u-boot] Please pull u-boot-amlogic-20190411
@ 2019-04-11 14:52 ` Tom Rini
0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2019-04-11 14:52 UTC (permalink / raw)
To: u-boot
On Thu, Apr 11, 2019 at 01:16:26PM +0200, Neil Armstrong wrote:
> Hi Tom,
>
> This PR adds support for 3 more Amlogic boards, support printing SoC
> revision information, add AXG family support for I2C and Reset, then
> fixup the AXG pinctrl defintions.
>
> Thanks,
> Neil
>
> The following changes since commit 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5:
>
> Merge branch '2019-04-09-master-imports-fs' (2019-04-10 08:18:18 -0400)
>
> are available in the Git repository at:
>
> git://git.denx.de/u-boot-amlogic.git tags/u-boot-amlogic-20190411
>
> for you to fetch changes up to 2c4e3cf21257f962e69264fe91ff2cc23cbd041a:
>
> pinctrl: meson: axg: Fix PIN and BANK offsets (2019-04-10 16:54:59 +0200)
>
NAK:
aarch64: w+ libretech-ac
+(libretech-ac) sandbox_timer_add_offset(test_add_time); \
+(libretech-ac) ^
+(libretech-ac) include/regmap.h:289:2: note: in expansion of macro 'regmap_read_poll_timeout_test'
+(libretech-ac) regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \
+(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+(libretech-ac) drivers/spi/meson_spifc.c:169:8: note: in expansion of macro 'regmap_read_poll_timeout'
+(libretech-ac) ret = regmap_read_poll_timeout(spifc->regmap, REG_SLAVE, data,
+(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~
w+(libretech-ac) drivers/spi/meson_spifc.c: In function 'meson_spifc_txrx':
w+(libretech-ac) include/regmap.h:277:4: warning: implicit declaration of function 'sandbox_timer_add_offset' [-Wimplicit-function-declaration]
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190411/6f43ce6a/attachment.sig>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PULL u-boot] Please pull u-boot-amlogic-20190411
2019-04-11 14:52 ` [U-Boot] " Tom Rini
@ 2019-04-11 14:53 ` Neil Armstrong
-1 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2019-04-11 14:53 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot-amlogic, U-Boot Mailing List, baylibre-upstreaming
[-- Attachment #1: Type: text/plain, Size: 1756 bytes --]
On 11/04/2019 16:52, Tom Rini wrote:
> On Thu, Apr 11, 2019 at 01:16:26PM +0200, Neil Armstrong wrote:
>
>> Hi Tom,
>>
>> This PR adds support for 3 more Amlogic boards, support printing SoC
>> revision information, add AXG family support for I2C and Reset, then
>> fixup the AXG pinctrl defintions.
>>
>> Thanks,
>> Neil
>>
>> The following changes since commit 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5:
>>
>> Merge branch '2019-04-09-master-imports-fs' (2019-04-10 08:18:18 -0400)
>>
>> are available in the Git repository at:
>>
>> git://git.denx.de/u-boot-amlogic.git tags/u-boot-amlogic-20190411
>>
>> for you to fetch changes up to 2c4e3cf21257f962e69264fe91ff2cc23cbd041a:
>>
>> pinctrl: meson: axg: Fix PIN and BANK offsets (2019-04-10 16:54:59 +0200)
>>
>
> NAK:
> aarch64: w+ libretech-ac
> +(libretech-ac) sandbox_timer_add_offset(test_add_time); \
> +(libretech-ac) ^
> +(libretech-ac) include/regmap.h:289:2: note: in expansion of macro 'regmap_read_poll_timeout_test'
> +(libretech-ac) regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \
> +(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> +(libretech-ac) drivers/spi/meson_spifc.c:169:8: note: in expansion of macro 'regmap_read_poll_timeout'
> +(libretech-ac) ret = regmap_read_poll_timeout(spifc->regmap, REG_SLAVE, data,
> +(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~
> w+(libretech-ac) drivers/spi/meson_spifc.c: In function 'meson_spifc_txrx':
> w+(libretech-ac) include/regmap.h:277:4: warning: implicit declaration of function 'sandbox_timer_add_offset' [-Wimplicit-function-declaration]
>
I'll investigate on that.
sandbox_timer_add_offset should not be used here, I'll find out why...
Neil
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PULL u-boot] Please pull u-boot-amlogic-20190411
@ 2019-04-11 14:53 ` Neil Armstrong
0 siblings, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2019-04-11 14:53 UTC (permalink / raw)
To: u-boot
On 11/04/2019 16:52, Tom Rini wrote:
> On Thu, Apr 11, 2019 at 01:16:26PM +0200, Neil Armstrong wrote:
>
>> Hi Tom,
>>
>> This PR adds support for 3 more Amlogic boards, support printing SoC
>> revision information, add AXG family support for I2C and Reset, then
>> fixup the AXG pinctrl defintions.
>>
>> Thanks,
>> Neil
>>
>> The following changes since commit 48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5:
>>
>> Merge branch '2019-04-09-master-imports-fs' (2019-04-10 08:18:18 -0400)
>>
>> are available in the Git repository at:
>>
>> git://git.denx.de/u-boot-amlogic.git tags/u-boot-amlogic-20190411
>>
>> for you to fetch changes up to 2c4e3cf21257f962e69264fe91ff2cc23cbd041a:
>>
>> pinctrl: meson: axg: Fix PIN and BANK offsets (2019-04-10 16:54:59 +0200)
>>
>
> NAK:
> aarch64: w+ libretech-ac
> +(libretech-ac) sandbox_timer_add_offset(test_add_time); \
> +(libretech-ac) ^
> +(libretech-ac) include/regmap.h:289:2: note: in expansion of macro 'regmap_read_poll_timeout_test'
> +(libretech-ac) regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \
> +(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> +(libretech-ac) drivers/spi/meson_spifc.c:169:8: note: in expansion of macro 'regmap_read_poll_timeout'
> +(libretech-ac) ret = regmap_read_poll_timeout(spifc->regmap, REG_SLAVE, data,
> +(libretech-ac) ^~~~~~~~~~~~~~~~~~~~~~~~
> w+(libretech-ac) drivers/spi/meson_spifc.c: In function 'meson_spifc_txrx':
> w+(libretech-ac) include/regmap.h:277:4: warning: implicit declaration of function 'sandbox_timer_add_offset' [-Wimplicit-function-declaration]
>
I'll investigate on that.
sandbox_timer_add_offset should not be used here, I'll find out why...
Neil
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190411/7dbac579/attachment.sig>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-04-11 14:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-11 11:16 [PULL u-boot] Please pull u-boot-amlogic-20190411 Neil Armstrong
2019-04-11 11:16 ` [U-Boot] " Neil Armstrong
2019-04-11 14:52 ` Tom Rini
2019-04-11 14:52 ` [U-Boot] " Tom Rini
2019-04-11 14:53 ` Neil Armstrong
2019-04-11 14:53 ` [U-Boot] " Neil Armstrong
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.