From: Leif Lindholm <leif.lindholm@linaro.org>
To: Marcin Wojtas <mw@semihalf.com>
Cc: edk2-devel@lists.01.org, ard.biesheuvel@linaro.org,
nadavh@marvell.com, jinghua@marvell.com, jsd@semihalf.com,
jaz@semihalf.com
Subject: Re: [platforms: PATCH v2 12/25] Marvell/Drivers: MvBoardDesc: Extend protocol with AHCI/SDMMC/XHCI
Date: Mon, 18 Jun 2018 17:09:52 +0100 [thread overview]
Message-ID: <20180618160952.kloaydbqe6fbylge@bivouac.eciton.net> (raw)
In-Reply-To: <1529266325-18371-13-git-send-email-mw@semihalf.com>
On Sun, Jun 17, 2018 at 10:11:52PM +0200, Marcin Wojtas wrote:
> Introduce new callback that can provide information
> about NonDiscoverableDevices to the relevant drivers and libraries.
>
> Extend ArmadaBoardDescLib with new structures (MV_BOARD_AHCI_DESC/
> MV_BOARD_SDMMC_DESC/MV_BOARD_XHCI_DESC) for holding board specific
> data.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> ---
> Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.inf | 2 +
> Silicon/Marvell/Include/Library/ArmadaBoardDescLib.h | 28 +++
> Silicon/Marvell/Include/Protocol/BoardDesc.h | 24 +++
> Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.c | 192 ++++++++++++++++++++
> 4 files changed, 246 insertions(+)
>
> diff --git a/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.inf b/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.inf
> index 6f57f06..cc0d9d4 100644
> --- a/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.inf
> +++ b/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.inf
> @@ -57,6 +57,8 @@
> gMarvellBoardDescProtocolGuid
>
> [Pcd]
> + gMarvellTokenSpaceGuid.PcdPciEAhci
> + gMarvellTokenSpaceGuid.PcdPciESdhci
> gMarvellTokenSpaceGuid.PcdPciEXhci
> gMarvellTokenSpaceGuid.PcdPp2Controllers
> gMarvellTokenSpaceGuid.PcdUtmiControllersEnabled
> diff --git a/Silicon/Marvell/Include/Library/ArmadaBoardDescLib.h b/Silicon/Marvell/Include/Library/ArmadaBoardDescLib.h
> index ab94877..7e4fa4d 100644
> --- a/Silicon/Marvell/Include/Library/ArmadaBoardDescLib.h
> +++ b/Silicon/Marvell/Include/Library/ArmadaBoardDescLib.h
> @@ -17,6 +17,34 @@
> #include <Library/ArmadaSoCDescLib.h>
>
> //
> +// NonDiscoverableDevices per-board description
> +//
> +
> +//
> +// AHCI devices per-board description
> +//
> +typedef struct {
> + MV_SOC_AHCI_DESC *SoC;
> + UINTN AhciDevCount;
> +} MV_BOARD_AHCI_DESC;
> +
> +//
> +// SDMMC devices per-board description
> +//
> +typedef struct {
> + MV_SOC_SDMMC_DESC *SoC;
> + UINTN SdMmcDevCount;
> +} MV_BOARD_SDMMC_DESC;
> +
> +//
> +// XHCI devices per-board description
> +//
> +typedef struct {
> + MV_SOC_XHCI_DESC *SoC;
> + UINTN XhciDevCount;
> +} MV_BOARD_XHCI_DESC;
> +
> +//
> // PP2 NIC devices per-board description
> //
> typedef struct {
> diff --git a/Silicon/Marvell/Include/Protocol/BoardDesc.h b/Silicon/Marvell/Include/Protocol/BoardDesc.h
> index 114a0ec..edf9491 100644
> --- a/Silicon/Marvell/Include/Protocol/BoardDesc.h
> +++ b/Silicon/Marvell/Include/Protocol/BoardDesc.h
> @@ -43,6 +43,27 @@ typedef struct _MARVELL_BOARD_DESC_PROTOCOL MARVELL_BOARD_DESC_PROTOCOL;
>
> typedef
> EFI_STATUS
> +(EFIAPI *MV_BOARD_DESC_AHCI_GET) (
> + IN MARVELL_BOARD_DESC_PROTOCOL *This,
> + IN OUT MV_BOARD_AHCI_DESC **AhciDesc
> + );
> +
> +typedef
> +EFI_STATUS
> +(EFIAPI *MV_BOARD_DESC_SDMMC_GET) (
> + IN MARVELL_BOARD_DESC_PROTOCOL *This,
> + IN OUT MV_BOARD_SDMMC_DESC **SdMmcDesc
> + );
> +
> +typedef
> +EFI_STATUS
> +(EFIAPI *MV_BOARD_DESC_XHCI_GET) (
> + IN MARVELL_BOARD_DESC_PROTOCOL *This,
> + IN OUT MV_BOARD_XHCI_DESC **XhciDesc
> + );
> +
> +typedef
> +EFI_STATUS
> (EFIAPI *MV_BOARD_DESC_PP2_GET) (
> IN MARVELL_BOARD_DESC_PROTOCOL *This,
> IN OUT MV_BOARD_PP2_DESC **Pp2Desc
> @@ -62,8 +83,11 @@ VOID
> );
>
> struct _MARVELL_BOARD_DESC_PROTOCOL {
> + MV_BOARD_DESC_AHCI_GET BoardDescAhciGet;
> MV_BOARD_DESC_PP2_GET BoardDescPp2Get;
> + MV_BOARD_DESC_SDMMC_GET BoardDescSdMmcGet;
> MV_BOARD_DESC_UTMI_GET BoardDescUtmiGet;
> + MV_BOARD_DESC_XHCI_GET BoardDescXhciGet;
> MV_BOARD_DESC_FREE BoardDescFree;
> };
>
> diff --git a/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.c b/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.c
> index 7c0bc39..3439017 100644
> --- a/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.c
> +++ b/Silicon/Marvell/Drivers/BoardDesc/MvBoardDescDxe.c
> @@ -37,6 +37,195 @@ MV_BOARD_DESC *mBoardDescInstance;
>
> STATIC
> EFI_STATUS
> +MvBoardDescAhciGet (
> + IN MARVELL_BOARD_DESC_PROTOCOL *This,
> + IN OUT MV_BOARD_AHCI_DESC **AhciDesc
> + )
> +{
> + UINT8 *AhciDeviceEnabled;
> + UINTN AhciCount, AhciDeviceTableSize, AhciIndex, Index;
> + MV_BOARD_AHCI_DESC *BoardDesc;
> + MV_SOC_AHCI_DESC *SoCDesc;
> + EFI_STATUS Status;
> +
> + /* Get SoC data about all available AHCI controllers */
> + Status = ArmadaSoCDescAhciGet (&SoCDesc, &AhciCount);
> + if (EFI_ERROR (Status)) {
> + return Status;
> + }
> +
> + /*
> + * Obtain table with enabled AHCI controllers
> + * which is represented as an array of UINT8 values
> + * (0x0 - disabled, 0x1 enabled).
> + */
> + AhciDeviceEnabled = PcdGetPtr (PcdPciEAhci);
> + if (AhciDeviceEnabled == NULL) {
> + /* No AHCI on the platform */
> + return EFI_SUCCESS;
> + }
> +
> + AhciDeviceTableSize = PcdGetSize (PcdPciEAhci);
> +
> + /* Check if PCD with AHCI controllers is correctly defined */
> + if (AhciDeviceTableSize > AhciCount) {
> + DEBUG ((DEBUG_ERROR, "%a: Wrong PcdPciEAhci format\n", __FUNCTION__));
> + return EFI_INVALID_PARAMETER;
> + }
> +
> + /* Allocate and fill board description */
> + BoardDesc = AllocateZeroPool (AhciDeviceTableSize * sizeof (MV_BOARD_AHCI_DESC));
> + if (BoardDesc == NULL) {
> + DEBUG ((DEBUG_ERROR, "%a: Cannot allocate memory\n", __FUNCTION__));
> + return EFI_OUT_OF_RESOURCES;
> + }
> +
> + AhciIndex = 0;
> + for (Index = 0; Index < AhciDeviceTableSize; Index++) {
> + if (!AhciDeviceEnabled[Index]) {
> + DEBUG ((DEBUG_INFO, "%a: Skip Ahci controller %d\n", __FUNCTION__, Index));
> + continue;
> + }
> +
> + BoardDesc[AhciIndex].SoC = &SoCDesc[Index];
> + AhciIndex++;
> + }
> +
> + BoardDesc->AhciDevCount = AhciIndex;
> +
> + *AhciDesc = BoardDesc;
> +
> + return EFI_SUCCESS;
> +}
> +
> +STATIC
> +EFI_STATUS
> +MvBoardDescSdMmcGet (
> + IN MARVELL_BOARD_DESC_PROTOCOL *This,
> + IN OUT MV_BOARD_SDMMC_DESC **SdMmcDesc
> + )
> +{
> + UINT8 *SdMmcDeviceEnabled;
> + UINTN SdMmcCount, SdMmcDeviceTableSize, SdMmcIndex, Index;
> + MV_BOARD_SDMMC_DESC *BoardDesc;
> + MV_SOC_SDMMC_DESC *SoCDesc;
> + EFI_STATUS Status;
> +
> + /* Get SoC data about all available SDMMC controllers */
> + Status = ArmadaSoCDescSdMmcGet (&SoCDesc, &SdMmcCount);
> + if (EFI_ERROR (Status)) {
> + return Status;
> + }
> +
> + /*
> + * Obtain table with enabled SDMMC controllers
> + * which is represented as an array of UINT8 values
> + * (0x0 - disabled, 0x1 enabled).
> + */
> + SdMmcDeviceEnabled = PcdGetPtr (PcdPciESdhci);
> + if (SdMmcDeviceEnabled == NULL) {
> + /* No SDMMC on platform */
> + return EFI_SUCCESS;
> + }
> +
> + SdMmcDeviceTableSize = PcdGetSize (PcdPciESdhci);
> +
> + /* Check if PCD with SDMMC controllers is correctly defined */
> + if (SdMmcDeviceTableSize > SdMmcCount) {
> + DEBUG ((DEBUG_ERROR, "%a: Wrong PcdPciESdhci format\n", __FUNCTION__));
> + return EFI_INVALID_PARAMETER;
> + }
> +
> + /* Allocate and fill board description */
> + BoardDesc = AllocateZeroPool (SdMmcDeviceTableSize * sizeof (MV_BOARD_SDMMC_DESC));
> + if (BoardDesc == NULL) {
> + DEBUG ((DEBUG_ERROR, "%a: Cannot allocate memory\n", __FUNCTION__));
> + return EFI_OUT_OF_RESOURCES;
> + }
> +
> + SdMmcIndex = 0;
> + for (Index = 0; Index < SdMmcDeviceTableSize; Index++) {
> + if (!SdMmcDeviceEnabled[Index]) {
> + DEBUG ((DEBUG_INFO, "%a: Skip SdMmc controller %d\n", __FUNCTION__, Index));
> + continue;
> + }
> +
> + BoardDesc[SdMmcIndex].SoC = &SoCDesc[Index];
> + SdMmcIndex++;
> + }
> +
> + BoardDesc->SdMmcDevCount = SdMmcIndex;
> +
> + *SdMmcDesc = BoardDesc;
> +
> + return EFI_SUCCESS;
> +}
> +
> +STATIC
> +EFI_STATUS
> +MvBoardDescXhciGet (
> + IN MARVELL_BOARD_DESC_PROTOCOL *This,
> + IN OUT MV_BOARD_XHCI_DESC **XhciDesc
> + )
> +{
> + UINT8 *XhciDeviceEnabled;
> + UINTN XhciCount, XhciDeviceTableSize, XhciIndex, Index;
> + MV_BOARD_XHCI_DESC *BoardDesc;
> + MV_SOC_XHCI_DESC *SoCDesc;
> + EFI_STATUS Status;
> +
> + /* Get SoC data about all available XHCI controllers */
> + Status = ArmadaSoCDescXhciGet (&SoCDesc, &XhciCount);
> + if (EFI_ERROR (Status)) {
> + return Status;
> + }
> +
> + /*
> + * Obtain table with enabled XHCI controllers
> + * which is represented as an array of UINT8 values
> + * (0x0 - disabled, 0x1 enabled).
> + */
> + XhciDeviceEnabled = PcdGetPtr (PcdPciEXhci);
> + if (XhciDeviceEnabled == NULL) {
> + /* No XHCI on platform */
> + return EFI_SUCCESS;
> + }
> +
> + XhciDeviceTableSize = PcdGetSize (PcdPciEXhci);
> +
> + /* Check if PCD with XHCI controllers is correctly defined */
> + if (XhciDeviceTableSize > XhciCount) {
> + DEBUG ((DEBUG_ERROR, "%a: Wrong PcdPciEXhci format\n", __FUNCTION__));
> + return EFI_INVALID_PARAMETER;
> + }
> +
> + /* Allocate and fill board description */
> + BoardDesc = AllocateZeroPool (XhciDeviceTableSize * sizeof (MV_BOARD_XHCI_DESC));
> + if (BoardDesc == NULL) {
> + DEBUG ((DEBUG_ERROR, "%a: Cannot allocate memory\n", __FUNCTION__));
> + return EFI_OUT_OF_RESOURCES;
> + }
> +
> + XhciIndex = 0;
> + for (Index = 0; Index < XhciDeviceTableSize; Index++) {
> + if (!XhciDeviceEnabled[Index]) {
> + DEBUG ((DEBUG_INFO, "%a: Skip Xhci controller %d\n", __FUNCTION__, Index));
> + continue;
> + }
> +
> + BoardDesc[XhciIndex].SoC = &SoCDesc[Index];
> + XhciIndex++;
> + }
> +
> + BoardDesc->XhciDevCount = XhciIndex;
> +
> + *XhciDesc = BoardDesc;
> +
> + return EFI_SUCCESS;
> +}
> +
> +STATIC
> +EFI_STATUS
> MvBoardDescPp2Get (
> IN MARVELL_BOARD_DESC_PROTOCOL *This,
> IN OUT MV_BOARD_PP2_DESC **Pp2Desc
> @@ -202,8 +391,11 @@ MvBoardDescInitProtocol (
> IN MARVELL_BOARD_DESC_PROTOCOL *BoardDescProtocol
> )
> {
> + BoardDescProtocol->BoardDescAhciGet = MvBoardDescAhciGet;
> BoardDescProtocol->BoardDescPp2Get = MvBoardDescPp2Get;
> + BoardDescProtocol->BoardDescSdMmcGet = MvBoardDescSdMmcGet;
> BoardDescProtocol->BoardDescUtmiGet = MvBoardDescUtmiGet;
> + BoardDescProtocol->BoardDescXhciGet = MvBoardDescXhciGet;
> BoardDescProtocol->BoardDescFree = MvBoardDescFree;
>
> return EFI_SUCCESS;
> --
> 2.7.4
>
next prev parent reply other threads:[~2018-06-18 16:09 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-17 20:11 [platforms: PATCH v2 00/25] Armada hardware description rework Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 01/25] Marvell/Library: Introduce ArmadaSoCDescLib class Marcin Wojtas
2018-06-18 15:44 ` Leif Lindholm
2018-06-18 15:58 ` Marcin Wojtas
2018-06-18 17:09 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 02/25] Marvell/Library: Introduce ArmadaBoardDescLib class Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 03/25] Marvell: Introduce MARVELL_BOARD_DESC_PROTOCOL Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 04/25] Marvell/Drivers: MvBoardDesc: Introduce board description driver Marcin Wojtas
2018-06-18 15:50 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 05/25] Marvell/Armada7k8k: Enable board description driver compilation Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 06/25] Marvell/Library: UtmiPhyLib: Switch to use MARVELL_BOARD_DESC protocol Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 07/25] Marvell/Library: RealTimeClockLib: Simplify obtaining base address Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 08/25] Marvell/Armada7k8k: Extend ArmadaSoCDescLib with PP2 information Marcin Wojtas
2018-06-18 15:51 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 09/25] Marvell/Drivers: MvBoardDesc: Extend protocol with PP2 support Marcin Wojtas
2018-06-18 15:53 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 10/25] Marvell/Drivers: Pp2Dxe: Switch to use MARVELL_BOARD_DESC protocol Marcin Wojtas
2018-06-18 15:55 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 11/25] Marvell/Armada7k8k: Extend ArmadaSoCDescLib with AHCI/SDMMC/XHCI Marcin Wojtas
2018-06-18 16:06 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 12/25] Marvell/Drivers: MvBoardDesc: Extend protocol " Marcin Wojtas
2018-06-18 16:09 ` Leif Lindholm [this message]
2018-06-17 20:11 ` [platforms: PATCH v2 13/25] Marvell/Drivers: NonDiscoverable: Switch to use MARVELL_BOARD_DESC Marcin Wojtas
2018-06-17 20:11 ` [platforms: PATCH v2 14/25] Marvell/Library: ComPhyLib: Get AHCI data with MARVELL_BOARD_DESC Marcin Wojtas
2018-06-18 16:15 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 15/25] Marvell/Armada7k8k: Extend ArmadaSoCDescLib with ComPhy information Marcin Wojtas
2018-06-18 16:18 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 16/25] Marvell/Drivers: MvBoardDesc: Extend protocol with ComPhy support Marcin Wojtas
2018-06-18 16:19 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 17/25] Marvell/Library: ComPhyLib: Switch library to use MARVELL_BOARD_DESC Marcin Wojtas
2018-06-18 16:20 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 18/25] Marvell/Armada7k8k: Extend ArmadaSoCDescLib with MDIO information Marcin Wojtas
2018-06-18 16:23 ` Leif Lindholm
2018-06-18 16:27 ` Marcin Wojtas
2018-06-18 17:16 ` Leif Lindholm
2018-06-17 20:11 ` [platforms: PATCH v2 19/25] Marvell/Drivers: MvBoardDesc: Extend protocol with MDIO support Marcin Wojtas
2018-06-18 16:44 ` Leif Lindholm
2018-06-17 20:12 ` [platforms: PATCH v2 20/25] Marvell/Drivers: MvMdioDxe: Enable 64bit addressing Marcin Wojtas
2018-06-17 20:12 ` [platforms: PATCH v2 21/25] Marvell/Drivers: MvMdioDxe: Switch driver to use MARVELL_BOARD_DESC Marcin Wojtas
2018-06-17 20:12 ` [platforms: PATCH v2 22/25] Marvell/Armada7k8k: Extend ArmadaSoCDescLib with I2C information Marcin Wojtas
2018-06-18 16:45 ` Leif Lindholm
2018-06-17 20:12 ` [platforms: PATCH v2 23/25] Marvell/Drivers: MvBoardDesc: Extend protocol with I2C support Marcin Wojtas
2018-06-18 16:47 ` Leif Lindholm
2018-06-17 20:12 ` [platforms: PATCH v2 24/25] Marvell/Drivers: MvI2cDxe: Switch driver to use MARVELL_BOARD_DESC Marcin Wojtas
2018-06-18 16:48 ` Leif Lindholm
2018-06-17 20:12 ` [platforms: PATCH v2 25/25] Marvell/Drivers: MvPhyDxe: Remove MvHwDescLib.h dependency Marcin Wojtas
2018-06-18 16:50 ` Leif Lindholm
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180618160952.kloaydbqe6fbylge@bivouac.eciton.net \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox