diff mbox series

[U-Boot,v2019.04-aspeed-openbmc,5/6] Add GPIO hogging support for AST2600 openbmc config

Message ID 20220124191503.88452-6-eajames@linux.ibm.com
State New
Headers show
Series Add GPIO hog support | expand

Commit Message

Eddie James Jan. 24, 2022, 7:15 p.m. UTC
Enable GPIO support in the SPL and hog the GPIOs in the SPL only. Also
increase the size of the malloc size in the SPL to get the GPIO driver
loaded.

Signed-off-by: Eddie James <eajames@linux.ibm.com>
---
 configs/ast2600_openbmc_spl_emmc_defconfig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Andrew Jeffery Feb. 3, 2022, 2:13 a.m. UTC | #1
On Tue, 25 Jan 2022, at 05:45, Eddie James wrote:
> Enable GPIO support in the SPL and hog the GPIOs in the SPL only. Also
> increase the size of the malloc size in the SPL to get the GPIO driver
> loaded.
>
> Signed-off-by: Eddie James <eajames@linux.ibm.com>
> ---
>  configs/ast2600_openbmc_spl_emmc_defconfig | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/configs/ast2600_openbmc_spl_emmc_defconfig 
> b/configs/ast2600_openbmc_spl_emmc_defconfig
> index 344a4d8f9c..5f50298a58 100644
> --- a/configs/ast2600_openbmc_spl_emmc_defconfig
> +++ b/configs/ast2600_openbmc_spl_emmc_defconfig
> @@ -11,6 +11,7 @@ CONFIG_SYS_TEXT_BASE=0x81000000
>  CONFIG_ASPEED_AST2600=y
>  # CONFIG_ASPEED_LOADERS is not set
>  CONFIG_TARGET_EVB_AST2600A1=y
> +CONFIG_SPL_GPIO_SUPPORT=y
>  CONFIG_SPL_LIBCOMMON_SUPPORT=y
>  CONFIG_SPL_LIBGENERIC_SUPPORT=y
>  CONFIG_SYS_MALLOC_F_LEN=0x2000
> @@ -19,7 +20,7 @@ CONFIG_SPL_SERIAL_SUPPORT=y
>  CONFIG_SPL_DRIVERS_MISC_SUPPORT=y
>  CONFIG_ENV_SIZE=0x10000
>  CONFIG_ENV_OFFSET=0x5000
> -CONFIG_SPL_SYS_MALLOC_F_LEN=0x800
> +CONFIG_SPL_SYS_MALLOC_F_LEN=0x1000

How much capacity does this leave us with? Have you looked at the 
memory layout for the SPL (I haven't, so any legwork you do here is 
appreciated ;) )?

>  CONFIG_SPL=y
>  CONFIG_SPL_STACK_R_ADDR=0x90300000
>  CONFIG_ARMV7_BOOT_SEC_DEFAULT=y
> @@ -94,6 +95,7 @@ CONFIG_CLK=y
>  CONFIG_SPL_CLK=y
>  CONFIG_ASPEED_HACE=y
>  CONFIG_DM_GPIO=y
> +CONFIG_SPL_GPIO_HOG=y
>  CONFIG_ASPEED_GPIO=y
>  CONFIG_DM_I2C=y
>  CONFIG_SYS_I2C_ASPEED=y
> -- 
> 2.27.0
Eddie James Feb. 3, 2022, 3:59 p.m. UTC | #2
On 2/2/22 20:13, Andrew Jeffery wrote:
>
> On Tue, 25 Jan 2022, at 05:45, Eddie James wrote:
>> Enable GPIO support in the SPL and hog the GPIOs in the SPL only. Also
>> increase the size of the malloc size in the SPL to get the GPIO driver
>> loaded.
>>
>> Signed-off-by: Eddie James <eajames@linux.ibm.com>
>> ---
>>   configs/ast2600_openbmc_spl_emmc_defconfig | 4 +++-
>>   1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/configs/ast2600_openbmc_spl_emmc_defconfig
>> b/configs/ast2600_openbmc_spl_emmc_defconfig
>> index 344a4d8f9c..5f50298a58 100644
>> --- a/configs/ast2600_openbmc_spl_emmc_defconfig
>> +++ b/configs/ast2600_openbmc_spl_emmc_defconfig
>> @@ -11,6 +11,7 @@ CONFIG_SYS_TEXT_BASE=0x81000000
>>   CONFIG_ASPEED_AST2600=y
>>   # CONFIG_ASPEED_LOADERS is not set
>>   CONFIG_TARGET_EVB_AST2600A1=y
>> +CONFIG_SPL_GPIO_SUPPORT=y
>>   CONFIG_SPL_LIBCOMMON_SUPPORT=y
>>   CONFIG_SPL_LIBGENERIC_SUPPORT=y
>>   CONFIG_SYS_MALLOC_F_LEN=0x2000
>> @@ -19,7 +20,7 @@ CONFIG_SPL_SERIAL_SUPPORT=y
>>   CONFIG_SPL_DRIVERS_MISC_SUPPORT=y
>>   CONFIG_ENV_SIZE=0x10000
>>   CONFIG_ENV_OFFSET=0x5000
>> -CONFIG_SPL_SYS_MALLOC_F_LEN=0x800
>> +CONFIG_SPL_SYS_MALLOC_F_LEN=0x1000
> How much capacity does this leave us with? Have you looked at the
> memory layout for the SPL (I haven't, so any legwork you do here is
> appreciated ;) )?


I'm not sure, I haven't looked into it that much. When I was debugging, 
trying to figure out why my SPL wouldn't load, we were right at capacity 
without the GPIO stuff - allocating like 0x7c0 or so. We should have 
plenty more room now. I guess I'm not sure where that memory comes from 
anyway.


Thanks,

Eddie


>
>>   CONFIG_SPL=y
>>   CONFIG_SPL_STACK_R_ADDR=0x90300000
>>   CONFIG_ARMV7_BOOT_SEC_DEFAULT=y
>> @@ -94,6 +95,7 @@ CONFIG_CLK=y
>>   CONFIG_SPL_CLK=y
>>   CONFIG_ASPEED_HACE=y
>>   CONFIG_DM_GPIO=y
>> +CONFIG_SPL_GPIO_HOG=y
>>   CONFIG_ASPEED_GPIO=y
>>   CONFIG_DM_I2C=y
>>   CONFIG_SYS_I2C_ASPEED=y
>> -- 
>> 2.27.0
Andrew Jeffery Feb. 3, 2022, 9:44 p.m. UTC | #3
On Fri, 4 Feb 2022, at 02:29, Eddie James wrote:
> On 2/2/22 20:13, Andrew Jeffery wrote:
>>
>> On Tue, 25 Jan 2022, at 05:45, Eddie James wrote:
>>> Enable GPIO support in the SPL and hog the GPIOs in the SPL only. Also
>>> increase the size of the malloc size in the SPL to get the GPIO driver
>>> loaded.
>>>
>>> Signed-off-by: Eddie James <eajames@linux.ibm.com>
>>> ---
>>>   configs/ast2600_openbmc_spl_emmc_defconfig | 4 +++-
>>>   1 file changed, 3 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/configs/ast2600_openbmc_spl_emmc_defconfig
>>> b/configs/ast2600_openbmc_spl_emmc_defconfig
>>> index 344a4d8f9c..5f50298a58 100644
>>> --- a/configs/ast2600_openbmc_spl_emmc_defconfig
>>> +++ b/configs/ast2600_openbmc_spl_emmc_defconfig
>>> @@ -11,6 +11,7 @@ CONFIG_SYS_TEXT_BASE=0x81000000
>>>   CONFIG_ASPEED_AST2600=y
>>>   # CONFIG_ASPEED_LOADERS is not set
>>>   CONFIG_TARGET_EVB_AST2600A1=y
>>> +CONFIG_SPL_GPIO_SUPPORT=y
>>>   CONFIG_SPL_LIBCOMMON_SUPPORT=y
>>>   CONFIG_SPL_LIBGENERIC_SUPPORT=y
>>>   CONFIG_SYS_MALLOC_F_LEN=0x2000
>>> @@ -19,7 +20,7 @@ CONFIG_SPL_SERIAL_SUPPORT=y
>>>   CONFIG_SPL_DRIVERS_MISC_SUPPORT=y
>>>   CONFIG_ENV_SIZE=0x10000
>>>   CONFIG_ENV_OFFSET=0x5000
>>> -CONFIG_SPL_SYS_MALLOC_F_LEN=0x800
>>> +CONFIG_SPL_SYS_MALLOC_F_LEN=0x1000
>> How much capacity does this leave us with? Have you looked at the
>> memory layout for the SPL (I haven't, so any legwork you do here is
>> appreciated ;) )?
>
>
> I'm not sure, I haven't looked into it that much. When I was debugging, 
> trying to figure out why my SPL wouldn't load, we were right at capacity 
> without the GPIO stuff - allocating like 0x7c0 or so. We should have 
> plenty more room now. I guess I'm not sure where that memory comes from 
> anyway.

Okay. Might be something for another day.
diff mbox series

Patch

diff --git a/configs/ast2600_openbmc_spl_emmc_defconfig b/configs/ast2600_openbmc_spl_emmc_defconfig
index 344a4d8f9c..5f50298a58 100644
--- a/configs/ast2600_openbmc_spl_emmc_defconfig
+++ b/configs/ast2600_openbmc_spl_emmc_defconfig
@@ -11,6 +11,7 @@  CONFIG_SYS_TEXT_BASE=0x81000000
 CONFIG_ASPEED_AST2600=y
 # CONFIG_ASPEED_LOADERS is not set
 CONFIG_TARGET_EVB_AST2600A1=y
+CONFIG_SPL_GPIO_SUPPORT=y
 CONFIG_SPL_LIBCOMMON_SUPPORT=y
 CONFIG_SPL_LIBGENERIC_SUPPORT=y
 CONFIG_SYS_MALLOC_F_LEN=0x2000
@@ -19,7 +20,7 @@  CONFIG_SPL_SERIAL_SUPPORT=y
 CONFIG_SPL_DRIVERS_MISC_SUPPORT=y
 CONFIG_ENV_SIZE=0x10000
 CONFIG_ENV_OFFSET=0x5000
-CONFIG_SPL_SYS_MALLOC_F_LEN=0x800
+CONFIG_SPL_SYS_MALLOC_F_LEN=0x1000
 CONFIG_SPL=y
 CONFIG_SPL_STACK_R_ADDR=0x90300000
 CONFIG_ARMV7_BOOT_SEC_DEFAULT=y
@@ -94,6 +95,7 @@  CONFIG_CLK=y
 CONFIG_SPL_CLK=y
 CONFIG_ASPEED_HACE=y
 CONFIG_DM_GPIO=y
+CONFIG_SPL_GPIO_HOG=y
 CONFIG_ASPEED_GPIO=y
 CONFIG_DM_I2C=y
 CONFIG_SYS_I2C_ASPEED=y