public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] ARM: da850evm: Enable CMD_DM for da850evm
@ 2018-09-09 13:50 Adam Ford
  2018-09-09 13:50 ` [U-Boot] [PATCH 2/2] ARM: da850evm: Pinctrl " Adam Ford
  2018-09-29 15:43 ` [U-Boot] [U-Boot, 1/2] ARM: da850evm: Enable CMD_DM " Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Adam Ford @ 2018-09-09 13:50 UTC (permalink / raw)
  To: u-boot

With DM enabled, this patch enables the 'dm' command to access
the dm tree, uclass and devres.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig
index 0369e93eb2..812de499ba 100644
--- a/configs/da850evm_defconfig
+++ b/configs/da850evm_defconfig
@@ -23,6 +23,7 @@ CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="U-Boot > "
 CONFIG_CRC32_VERIFY=y
 # CONFIG_CMD_EEPROM is not set
+CONFIG_CMD_DM=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_GPT is not set
 # CONFIG_CMD_PART is not set
diff --git a/configs/da850evm_direct_nor_defconfig b/configs/da850evm_direct_nor_defconfig
index b4c5f093f5..4b1823f71e 100644
--- a/configs/da850evm_direct_nor_defconfig
+++ b/configs/da850evm_direct_nor_defconfig
@@ -19,6 +19,7 @@ CONFIG_SYS_PROMPT="U-Boot > "
 CONFIG_CMD_IMLS=y
 CONFIG_CRC32_VERIFY=y
 # CONFIG_CMD_EEPROM is not set
+CONFIG_CMD_DM=y
 # CONFIG_CMD_GPIO is not set
 # CONFIG_CMD_GPT is not set
 # CONFIG_CMD_MMC is not set
diff --git a/configs/da850evm_nand_defconfig b/configs/da850evm_nand_defconfig
index 5c698eb0ee..556df3506f 100644
--- a/configs/da850evm_nand_defconfig
+++ b/configs/da850evm_nand_defconfig
@@ -24,6 +24,7 @@ CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="U-Boot > "
 CONFIG_CRC32_VERIFY=y
 # CONFIG_CMD_EEPROM is not set
+CONFIG_CMD_DM=y
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_GPT is not set
 CONFIG_CMD_NAND=y
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 2/2] ARM: da850evm: Pinctrl for da850evm
  2018-09-09 13:50 [U-Boot] [PATCH 1/2] ARM: da850evm: Enable CMD_DM for da850evm Adam Ford
@ 2018-09-09 13:50 ` Adam Ford
  2018-09-29 15:44   ` [U-Boot] [U-Boot,2/2] " Tom Rini
  2018-09-29 15:43 ` [U-Boot] [U-Boot, 1/2] ARM: da850evm: Enable CMD_DM " Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Adam Ford @ 2018-09-09 13:50 UTC (permalink / raw)
  To: u-boot

The simple pin controller works for da850, so this patch enables
this to pin-mux the pins defined in the device tree for the da850evm.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig
index 812de499ba..12614289b7 100644
--- a/configs/da850evm_defconfig
+++ b/configs/da850evm_defconfig
@@ -53,6 +53,8 @@ CONFIG_SPI_FLASH=y
 CONFIG_SPI_FLASH_STMICRO=y
 CONFIG_SPI_FLASH_WINBOND=y
 CONFIG_SPI_FLASH_MTD=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_SINGLE=y
 CONFIG_DM_SERIAL=y
 CONFIG_SYS_NS16550=y
 CONFIG_SPI=y
diff --git a/configs/da850evm_direct_nor_defconfig b/configs/da850evm_direct_nor_defconfig
index 4b1823f71e..107b5db38f 100644
--- a/configs/da850evm_direct_nor_defconfig
+++ b/configs/da850evm_direct_nor_defconfig
@@ -44,6 +44,8 @@ CONFIG_DM_SPI_FLASH=y
 CONFIG_SPI_FLASH=y
 CONFIG_SPI_FLASH_STMICRO=y
 CONFIG_SPI_FLASH_WINBOND=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_SINGLE=y
 CONFIG_SPECIFY_CONSOLE_INDEX=y
 CONFIG_DM_SERIAL=y
 CONFIG_SYS_NS16550=y
diff --git a/configs/da850evm_nand_defconfig b/configs/da850evm_nand_defconfig
index 556df3506f..e24aca80b5 100644
--- a/configs/da850evm_nand_defconfig
+++ b/configs/da850evm_nand_defconfig
@@ -56,6 +56,8 @@ CONFIG_SPI_FLASH=y
 CONFIG_SPI_FLASH_STMICRO=y
 CONFIG_SPI_FLASH_WINBOND=y
 CONFIG_SPI_FLASH_MTD=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_SINGLE=y
 CONFIG_DM_SERIAL=y
 CONFIG_SYS_NS16550=y
 CONFIG_SPI=y
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [U-Boot, 1/2] ARM: da850evm: Enable CMD_DM for da850evm
  2018-09-09 13:50 [U-Boot] [PATCH 1/2] ARM: da850evm: Enable CMD_DM for da850evm Adam Ford
  2018-09-09 13:50 ` [U-Boot] [PATCH 2/2] ARM: da850evm: Pinctrl " Adam Ford
@ 2018-09-29 15:43 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2018-09-29 15:43 UTC (permalink / raw)
  To: u-boot

On Sun, Sep 09, 2018 at 08:50:39AM -0500, Adam Ford wrote:

> With DM enabled, this patch enables the 'dm' command to access
> the dm tree, uclass and devres.
> 
> Signed-off-by: Adam Ford <aford173@gmail.com>
> 
> diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig
> index 0369e93eb2..812de499ba 100644

Applied to u-boot/master, thanks!

-- 
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/20180929/932bbc3a/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [U-Boot,2/2] ARM: da850evm: Pinctrl for da850evm
  2018-09-09 13:50 ` [U-Boot] [PATCH 2/2] ARM: da850evm: Pinctrl " Adam Ford
@ 2018-09-29 15:44   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2018-09-29 15:44 UTC (permalink / raw)
  To: u-boot

On Sun, Sep 09, 2018 at 08:50:40AM -0500, Adam Ford wrote:

> The simple pin controller works for da850, so this patch enables
> this to pin-mux the pins defined in the device tree for the da850evm.
> 
> Signed-off-by: Adam Ford <aford173@gmail.com>
> 
> diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig
> index 812de499ba..12614289b7 100644

Applied to u-boot/master, thanks!

-- 
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/20180929/d483813f/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-09-29 15:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-09 13:50 [U-Boot] [PATCH 1/2] ARM: da850evm: Enable CMD_DM for da850evm Adam Ford
2018-09-09 13:50 ` [U-Boot] [PATCH 2/2] ARM: da850evm: Pinctrl " Adam Ford
2018-09-29 15:44   ` [U-Boot] [U-Boot,2/2] " Tom Rini
2018-09-29 15:43 ` [U-Boot] [U-Boot, 1/2] ARM: da850evm: Enable CMD_DM " Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox