diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2016-02-11 15:47:17 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-02-24 18:42:49 -0500 |
commit | 14cec061139a8fb0461d8748d14a2dbcf8a56f2e (patch) | |
tree | 10fcbecd724fa06c64df250df3802762e45f70b1 /board | |
parent | 52dd704bf8eda7ca039cdb398ec0b6895c3ef939 (diff) | |
download | u-boot-imx-14cec061139a8fb0461d8748d14a2dbcf8a56f2e.zip u-boot-imx-14cec061139a8fb0461d8748d14a2dbcf8a56f2e.tar.gz u-boot-imx-14cec061139a8fb0461d8748d14a2dbcf8a56f2e.tar.bz2 |
gpio: stm32_gpio: move clock config from driver to board
This patch removes the gpio clock enable from gpio driver & move it in the
board code, making it possible to use the gpio driver with other socs.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/st/stm32f429-discovery/stm32f429-discovery.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/st/stm32f429-discovery/stm32f429-discovery.c b/board/st/stm32f429-discovery/stm32f429-discovery.c index fb8475f..d16d73f 100644 --- a/board/st/stm32f429-discovery/stm32f429-discovery.c +++ b/board/st/stm32f429-discovery/stm32f429-discovery.c @@ -50,6 +50,7 @@ int uart_setup_gpio(void) int i; int rv = 0; + clock_setup(GPIO_A_CLOCK_CFG); for (i = 0; i < ARRAY_SIZE(usart_gpio); i++) { rv = stm32_gpio_config(&usart_gpio[i], &gpio_ctl_usart); if (rv) @@ -115,6 +116,13 @@ static int fmc_setup_gpio(void) int rv = 0; int i; + clock_setup(GPIO_B_CLOCK_CFG); + clock_setup(GPIO_C_CLOCK_CFG); + clock_setup(GPIO_D_CLOCK_CFG); + clock_setup(GPIO_E_CLOCK_CFG); + clock_setup(GPIO_F_CLOCK_CFG); + clock_setup(GPIO_G_CLOCK_CFG); + for (i = 0; i < ARRAY_SIZE(ext_ram_fmc_gpio); i++) { rv = stm32_gpio_config(&ext_ram_fmc_gpio[i], &gpio_ctl_fmc); |