soc/qualcomm/common: Increase SPI gpios drive strength to 8mA

EE requested that we increase the drive strength for the SPI lines to
8mA.

BUG=b:198627043
BRANCH=None
TEST=EE help verify

Change-Id: Ic887a7eef74f1063f7284db042c5fbd2e1d5bd4c
Signed-off-by: Shelley Chen <shchen@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63192
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Shelley Chen 2022-03-29 18:35:20 -07:00
parent 48f6c2b46f
commit dd6b0610e3
1 changed files with 2 additions and 2 deletions

View File

@ -146,10 +146,10 @@ static void configure_gpios(void)
gpio_output(QSPI_CS, 1); gpio_output(QSPI_CS, 1);
gpio_configure(QSPI_DATA_0, GPIO_FUNC_QSPI_DATA_0, gpio_configure(QSPI_DATA_0, GPIO_FUNC_QSPI_DATA_0,
GPIO_NO_PULL, GPIO_2MA, GPIO_OUTPUT); GPIO_NO_PULL, GPIO_8MA, GPIO_OUTPUT);
gpio_configure(QSPI_DATA_1, GPIO_FUNC_QSPI_DATA_1, gpio_configure(QSPI_DATA_1, GPIO_FUNC_QSPI_DATA_1,
GPIO_NO_PULL, GPIO_2MA, GPIO_OUTPUT); GPIO_NO_PULL, GPIO_8MA, GPIO_OUTPUT);
gpio_configure(QSPI_CLK, GPIO_FUNC_QSPI_CLK, gpio_configure(QSPI_CLK, GPIO_FUNC_QSPI_CLK,
GPIO_NO_PULL, GPIO_8MA, GPIO_OUTPUT); GPIO_NO_PULL, GPIO_8MA, GPIO_OUTPUT);