All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe
@ 2021-08-13 11:56 Pali Rohár
  2021-08-13 11:56 ` [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support Pali Rohár
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Pali Rohár @ 2021-08-13 11:56 UTC (permalink / raw)
  To: Stefan Roese, Marek Behún; +Cc: u-boot

Espressobin has one on-board SATA port which is connected directly to CPU.

More SATA disks can be connected via mPCIe add-in card with PCIe-SATA
controller.

So enable required SATA AHCI PCIe drivers in defconfig file.

Signed-off-by: Pali Rohár <pali@kernel.org>
---
 configs/mvebu_espressobin-88f3720_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/mvebu_espressobin-88f3720_defconfig b/configs/mvebu_espressobin-88f3720_defconfig
index c8ae0cf6109a..4003a25346ce 100644
--- a/configs/mvebu_espressobin-88f3720_defconfig
+++ b/configs/mvebu_espressobin-88f3720_defconfig
@@ -30,6 +30,7 @@ CONFIG_CMD_I2C=y
 CONFIG_CMD_MMC=y
 CONFIG_CMD_MTD=y
 CONFIG_CMD_PCI=y
+CONFIG_CMD_SATA=y
 CONFIG_CMD_SPI=y
 CONFIG_CMD_USB=y
 CONFIG_CMD_WDT=y
@@ -46,6 +47,7 @@ CONFIG_ENV_OVERWRITE=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_SYS_RELOC_GD_ENV_ADDR=y
 CONFIG_NET_RANDOM_ETHADDR=y
+CONFIG_AHCI_PCI=y
 CONFIG_AHCI_MVEBU=y
 CONFIG_CLK=y
 CONFIG_CLK_MVEBU=y
-- 
2.20.1


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

* [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support
  2021-08-13 11:56 [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Pali Rohár
@ 2021-08-13 11:56 ` Pali Rohár
  2021-08-16  6:58   ` Stefan Roese
  2021-09-01  9:09   ` Stefan Roese
  2021-08-13 11:56 ` [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support Pali Rohár
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Pali Rohár @ 2021-08-13 11:56 UTC (permalink / raw)
  To: Stefan Roese, Marek Behún; +Cc: u-boot

SATA disks could be connected via mPCIe add-in card with PCIe-SATA
controller into Mox-B or Mox-G module.

Signed-off-by: Pali Rohár <pali@kernel.org>
---
 configs/turris_mox_defconfig | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig
index c19b8379c32a..fc5e1fc3766f 100644
--- a/configs/turris_mox_defconfig
+++ b/configs/turris_mox_defconfig
@@ -12,6 +12,7 @@ CONFIG_DM_GPIO=y
 CONFIG_DEFAULT_DEVICE_TREE="armada-3720-turris-mox"
 CONFIG_DEBUG_UART_BASE=0xd0012000
 CONFIG_DEBUG_UART=y
+CONFIG_AHCI=y
 CONFIG_OF_BOARD_FIXUP=y
 CONFIG_DISTRO_DEFAULTS=y
 # CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
@@ -32,6 +33,7 @@ CONFIG_CMD_I2C=y
 CONFIG_CMD_MMC=y
 CONFIG_CMD_MTD=y
 CONFIG_CMD_PCI=y
+CONFIG_CMD_SATA=y
 CONFIG_CMD_SPI=y
 CONFIG_CMD_USB=y
 CONFIG_CMD_WDT=y
@@ -47,6 +49,8 @@ CONFIG_MAC_PARTITION=y
 CONFIG_ENV_OVERWRITE=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_SYS_RELOC_GD_ENV_ADDR=y
+CONFIG_SCSI_AHCI=y
+CONFIG_AHCI_PCI=y
 CONFIG_BUTTON=y
 CONFIG_BUTTON_GPIO=y
 CONFIG_CLK=y
@@ -81,6 +85,8 @@ CONFIG_PINCTRL_ARMADA_37XX=y
 CONFIG_DM_REGULATOR_FIXED=y
 CONFIG_DM_RTC=y
 CONFIG_RTC_DS1307=y
+CONFIG_SCSI=y
+CONFIG_DM_SCSI=y
 CONFIG_DEBUG_UART_SHIFT=2
 CONFIG_DEBUG_UART_ANNOUNCE=y
 CONFIG_MVEBU_A3700_UART=y
-- 
2.20.1


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

* [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support
  2021-08-13 11:56 [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Pali Rohár
  2021-08-13 11:56 ` [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support Pali Rohár
@ 2021-08-13 11:56 ` Pali Rohár
  2021-08-16  6:59   ` Stefan Roese
  2021-09-01  9:10   ` Stefan Roese
  2021-08-16  6:58 ` [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Stefan Roese
  2021-09-01  9:09 ` Stefan Roese
  3 siblings, 2 replies; 9+ messages in thread
From: Pali Rohár @ 2021-08-13 11:56 UTC (permalink / raw)
  To: Stefan Roese, Marek Behún; +Cc: u-boot

PCIe-based NVMe SSD disks in M.2 2230/2242/2260 form-factor can be
connected to Turris Omnia mPCIe slot via passive M.2 <--> mPCIe adapter.

So enable PCIe NVMe drivers.

Signed-off-by: Pali Rohár <pali@kernel.org>
---
 configs/turris_omnia_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig
index cd443ceb300f..2acc4ada4123 100644
--- a/configs/turris_omnia_defconfig
+++ b/configs/turris_omnia_defconfig
@@ -77,6 +77,7 @@ CONFIG_PHY_MARVELL=y
 CONFIG_PHY_GIGE=y
 CONFIG_MVNETA=y
 CONFIG_MII=y
+CONFIG_NVME=y
 CONFIG_PCI=y
 CONFIG_PCI_MVEBU=y
 CONFIG_DM_RTC=y
-- 
2.20.1


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

* Re: [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe
  2021-08-13 11:56 [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Pali Rohár
  2021-08-13 11:56 ` [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support Pali Rohár
  2021-08-13 11:56 ` [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support Pali Rohár
@ 2021-08-16  6:58 ` Stefan Roese
  2021-09-01  9:09 ` Stefan Roese
  3 siblings, 0 replies; 9+ messages in thread
From: Stefan Roese @ 2021-08-16  6:58 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 13.08.21 13:56, Pali Rohár wrote:
> Espressobin has one on-board SATA port which is connected directly to CPU.
> 
> More SATA disks can be connected via mPCIe add-in card with PCIe-SATA
> controller.
> 
> So enable required SATA AHCI PCIe drivers in defconfig file.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   configs/mvebu_espressobin-88f3720_defconfig | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/configs/mvebu_espressobin-88f3720_defconfig b/configs/mvebu_espressobin-88f3720_defconfig
> index c8ae0cf6109a..4003a25346ce 100644
> --- a/configs/mvebu_espressobin-88f3720_defconfig
> +++ b/configs/mvebu_espressobin-88f3720_defconfig
> @@ -30,6 +30,7 @@ CONFIG_CMD_I2C=y
>   CONFIG_CMD_MMC=y
>   CONFIG_CMD_MTD=y
>   CONFIG_CMD_PCI=y
> +CONFIG_CMD_SATA=y
>   CONFIG_CMD_SPI=y
>   CONFIG_CMD_USB=y
>   CONFIG_CMD_WDT=y
> @@ -46,6 +47,7 @@ CONFIG_ENV_OVERWRITE=y
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_SYS_RELOC_GD_ENV_ADDR=y
>   CONFIG_NET_RANDOM_ETHADDR=y
> +CONFIG_AHCI_PCI=y
>   CONFIG_AHCI_MVEBU=y
>   CONFIG_CLK=y
>   CONFIG_CLK_MVEBU=y
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support
  2021-08-13 11:56 ` [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support Pali Rohár
@ 2021-08-16  6:58   ` Stefan Roese
  2021-09-01  9:09   ` Stefan Roese
  1 sibling, 0 replies; 9+ messages in thread
From: Stefan Roese @ 2021-08-16  6:58 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 13.08.21 13:56, Pali Rohár wrote:
> SATA disks could be connected via mPCIe add-in card with PCIe-SATA
> controller into Mox-B or Mox-G module.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   configs/turris_mox_defconfig | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig
> index c19b8379c32a..fc5e1fc3766f 100644
> --- a/configs/turris_mox_defconfig
> +++ b/configs/turris_mox_defconfig
> @@ -12,6 +12,7 @@ CONFIG_DM_GPIO=y
>   CONFIG_DEFAULT_DEVICE_TREE="armada-3720-turris-mox"
>   CONFIG_DEBUG_UART_BASE=0xd0012000
>   CONFIG_DEBUG_UART=y
> +CONFIG_AHCI=y
>   CONFIG_OF_BOARD_FIXUP=y
>   CONFIG_DISTRO_DEFAULTS=y
>   # CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
> @@ -32,6 +33,7 @@ CONFIG_CMD_I2C=y
>   CONFIG_CMD_MMC=y
>   CONFIG_CMD_MTD=y
>   CONFIG_CMD_PCI=y
> +CONFIG_CMD_SATA=y
>   CONFIG_CMD_SPI=y
>   CONFIG_CMD_USB=y
>   CONFIG_CMD_WDT=y
> @@ -47,6 +49,8 @@ CONFIG_MAC_PARTITION=y
>   CONFIG_ENV_OVERWRITE=y
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_SYS_RELOC_GD_ENV_ADDR=y
> +CONFIG_SCSI_AHCI=y
> +CONFIG_AHCI_PCI=y
>   CONFIG_BUTTON=y
>   CONFIG_BUTTON_GPIO=y
>   CONFIG_CLK=y
> @@ -81,6 +85,8 @@ CONFIG_PINCTRL_ARMADA_37XX=y
>   CONFIG_DM_REGULATOR_FIXED=y
>   CONFIG_DM_RTC=y
>   CONFIG_RTC_DS1307=y
> +CONFIG_SCSI=y
> +CONFIG_DM_SCSI=y
>   CONFIG_DEBUG_UART_SHIFT=2
>   CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support
  2021-08-13 11:56 ` [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support Pali Rohár
@ 2021-08-16  6:59   ` Stefan Roese
  2021-09-01  9:10   ` Stefan Roese
  1 sibling, 0 replies; 9+ messages in thread
From: Stefan Roese @ 2021-08-16  6:59 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 13.08.21 13:56, Pali Rohár wrote:
> PCIe-based NVMe SSD disks in M.2 2230/2242/2260 form-factor can be
> connected to Turris Omnia mPCIe slot via passive M.2 <--> mPCIe adapter.
> 
> So enable PCIe NVMe drivers.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   configs/turris_omnia_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig
> index cd443ceb300f..2acc4ada4123 100644
> --- a/configs/turris_omnia_defconfig
> +++ b/configs/turris_omnia_defconfig
> @@ -77,6 +77,7 @@ CONFIG_PHY_MARVELL=y
>   CONFIG_PHY_GIGE=y
>   CONFIG_MVNETA=y
>   CONFIG_MII=y
> +CONFIG_NVME=y
>   CONFIG_PCI=y
>   CONFIG_PCI_MVEBU=y
>   CONFIG_DM_RTC=y
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe
  2021-08-13 11:56 [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Pali Rohár
                   ` (2 preceding siblings ...)
  2021-08-16  6:58 ` [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Stefan Roese
@ 2021-09-01  9:09 ` Stefan Roese
  3 siblings, 0 replies; 9+ messages in thread
From: Stefan Roese @ 2021-09-01  9:09 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 13.08.21 13:56, Pali Rohár wrote:
> Espressobin has one on-board SATA port which is connected directly to CPU.
> 
> More SATA disks can be connected via mPCIe add-in card with PCIe-SATA
> controller.
> 
> So enable required SATA AHCI PCIe drivers in defconfig file.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Applied to u-boot-marvell/master

Thanks,
Stefan

> ---
>   configs/mvebu_espressobin-88f3720_defconfig | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/configs/mvebu_espressobin-88f3720_defconfig b/configs/mvebu_espressobin-88f3720_defconfig
> index c8ae0cf6109a..4003a25346ce 100644
> --- a/configs/mvebu_espressobin-88f3720_defconfig
> +++ b/configs/mvebu_espressobin-88f3720_defconfig
> @@ -30,6 +30,7 @@ CONFIG_CMD_I2C=y
>   CONFIG_CMD_MMC=y
>   CONFIG_CMD_MTD=y
>   CONFIG_CMD_PCI=y
> +CONFIG_CMD_SATA=y
>   CONFIG_CMD_SPI=y
>   CONFIG_CMD_USB=y
>   CONFIG_CMD_WDT=y
> @@ -46,6 +47,7 @@ CONFIG_ENV_OVERWRITE=y
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_SYS_RELOC_GD_ENV_ADDR=y
>   CONFIG_NET_RANDOM_ETHADDR=y
> +CONFIG_AHCI_PCI=y
>   CONFIG_AHCI_MVEBU=y
>   CONFIG_CLK=y
>   CONFIG_CLK_MVEBU=y
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support
  2021-08-13 11:56 ` [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support Pali Rohár
  2021-08-16  6:58   ` Stefan Roese
@ 2021-09-01  9:09   ` Stefan Roese
  1 sibling, 0 replies; 9+ messages in thread
From: Stefan Roese @ 2021-09-01  9:09 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 13.08.21 13:56, Pali Rohár wrote:
> SATA disks could be connected via mPCIe add-in card with PCIe-SATA
> controller into Mox-B or Mox-G module.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Applied to u-boot-marvell/master

Thanks,
Stefan

> ---
>   configs/turris_mox_defconfig | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig
> index c19b8379c32a..fc5e1fc3766f 100644
> --- a/configs/turris_mox_defconfig
> +++ b/configs/turris_mox_defconfig
> @@ -12,6 +12,7 @@ CONFIG_DM_GPIO=y
>   CONFIG_DEFAULT_DEVICE_TREE="armada-3720-turris-mox"
>   CONFIG_DEBUG_UART_BASE=0xd0012000
>   CONFIG_DEBUG_UART=y
> +CONFIG_AHCI=y
>   CONFIG_OF_BOARD_FIXUP=y
>   CONFIG_DISTRO_DEFAULTS=y
>   # CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
> @@ -32,6 +33,7 @@ CONFIG_CMD_I2C=y
>   CONFIG_CMD_MMC=y
>   CONFIG_CMD_MTD=y
>   CONFIG_CMD_PCI=y
> +CONFIG_CMD_SATA=y
>   CONFIG_CMD_SPI=y
>   CONFIG_CMD_USB=y
>   CONFIG_CMD_WDT=y
> @@ -47,6 +49,8 @@ CONFIG_MAC_PARTITION=y
>   CONFIG_ENV_OVERWRITE=y
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_SYS_RELOC_GD_ENV_ADDR=y
> +CONFIG_SCSI_AHCI=y
> +CONFIG_AHCI_PCI=y
>   CONFIG_BUTTON=y
>   CONFIG_BUTTON_GPIO=y
>   CONFIG_CLK=y
> @@ -81,6 +85,8 @@ CONFIG_PINCTRL_ARMADA_37XX=y
>   CONFIG_DM_REGULATOR_FIXED=y
>   CONFIG_DM_RTC=y
>   CONFIG_RTC_DS1307=y
> +CONFIG_SCSI=y
> +CONFIG_DM_SCSI=y
>   CONFIG_DEBUG_UART_SHIFT=2
>   CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support
  2021-08-13 11:56 ` [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support Pali Rohár
  2021-08-16  6:59   ` Stefan Roese
@ 2021-09-01  9:10   ` Stefan Roese
  1 sibling, 0 replies; 9+ messages in thread
From: Stefan Roese @ 2021-09-01  9:10 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 13.08.21 13:56, Pali Rohár wrote:
> PCIe-based NVMe SSD disks in M.2 2230/2242/2260 form-factor can be
> connected to Turris Omnia mPCIe slot via passive M.2 <--> mPCIe adapter.
> 
> So enable PCIe NVMe drivers.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Applied to u-boot-marvell/master

Thanks,
Stefan

> ---
>   configs/turris_omnia_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig
> index cd443ceb300f..2acc4ada4123 100644
> --- a/configs/turris_omnia_defconfig
> +++ b/configs/turris_omnia_defconfig
> @@ -77,6 +77,7 @@ CONFIG_PHY_MARVELL=y
>   CONFIG_PHY_GIGE=y
>   CONFIG_MVNETA=y
>   CONFIG_MII=y
> +CONFIG_NVME=y
>   CONFIG_PCI=y
>   CONFIG_PCI_MVEBU=y
>   CONFIG_DM_RTC=y
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

end of thread, other threads:[~2021-09-01  9:10 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-13 11:56 [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Pali Rohár
2021-08-13 11:56 ` [PATCH 2/3] arm: mvebu: turris_mox: Enable SATA support Pali Rohár
2021-08-16  6:58   ` Stefan Roese
2021-09-01  9:09   ` Stefan Roese
2021-08-13 11:56 ` [PATCH 3/3] arm: mvebu: turris_omnia: Enable NVMe support Pali Rohár
2021-08-16  6:59   ` Stefan Roese
2021-09-01  9:10   ` Stefan Roese
2021-08-16  6:58 ` [PATCH 1/3] arm: mvebu: espressobin: Enable also SATA support via PCIe Stefan Roese
2021-09-01  9:09 ` Stefan Roese

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.