Vladimir Zapolskiy | 6b20ef8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 by Vladimir Zapolskiy <vz@mleia.com> |
| 3 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Vladimir Zapolskiy | 6b20ef8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/arch/cpu.h> |
| 9 | #include <asm/arch/clk.h> |
| 10 | #include <asm/arch/uart.h> |
Albert ARIBAUD \(3ADEV\) | 24bfa9d | 2015-03-31 11:40:47 +0200 | [diff] [blame] | 11 | #include <asm/arch/mux.h> |
Vladimir Zapolskiy | 6b20ef8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 12 | #include <asm/io.h> |
Albert ARIBAUD \(3ADEV\) | eb135ad | 2015-03-31 11:40:46 +0200 | [diff] [blame] | 13 | #include <dm.h> |
Vladimir Zapolskiy | 6b20ef8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 14 | |
| 15 | static struct clk_pm_regs *clk = (struct clk_pm_regs *)CLK_PM_BASE; |
| 16 | static struct uart_ctrl_regs *ctrl = (struct uart_ctrl_regs *)UART_CTRL_BASE; |
Albert ARIBAUD \(3ADEV\) | 24bfa9d | 2015-03-31 11:40:47 +0200 | [diff] [blame] | 17 | static struct mux_regs *mux = (struct mux_regs *)MUX_BASE; |
Vladimir Zapolskiy | 6b20ef8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 18 | |
| 19 | void lpc32xx_uart_init(unsigned int uart_id) |
| 20 | { |
| 21 | if (uart_id < 1 || uart_id > 7) |
| 22 | return; |
| 23 | |
| 24 | /* Disable loopback mode, if it is set by S1L bootloader */ |
| 25 | clrbits_le32(&ctrl->loop, |
| 26 | UART_LOOPBACK(CONFIG_SYS_LPC32XX_UART)); |
| 27 | |
| 28 | if (uart_id < 3 || uart_id > 6) |
| 29 | return; |
| 30 | |
| 31 | /* Enable UART system clock */ |
| 32 | setbits_le32(&clk->uartclk_ctrl, CLK_UART(uart_id)); |
| 33 | |
| 34 | /* Set UART into autoclock mode */ |
| 35 | clrsetbits_le32(&ctrl->clkmode, |
| 36 | UART_CLKMODE_MASK(uart_id), |
| 37 | UART_CLKMODE_AUTO(uart_id)); |
| 38 | |
| 39 | /* Bypass pre-divider of UART clock */ |
| 40 | writel(CLK_UART_X_DIV(1) | CLK_UART_Y_DIV(1), |
| 41 | &clk->u3clk + (uart_id - 3)); |
| 42 | } |
Albert ARIBAUD \(3ADEV\) | 391e163 | 2015-03-31 11:40:43 +0200 | [diff] [blame] | 43 | |
Sylvain Lemieux | 90a837f | 2015-08-10 08:16:31 -0400 | [diff] [blame^] | 44 | void lpc32xx_dma_init(void) |
| 45 | { |
| 46 | /* Enable DMA interface */ |
| 47 | writel(DMA_CLK_ENABLE, &clk->dmaclk_ctrl); |
| 48 | |
| 49 | } |
| 50 | |
Albert ARIBAUD \(3ADEV\) | 391e163 | 2015-03-31 11:40:43 +0200 | [diff] [blame] | 51 | void lpc32xx_mac_init(void) |
| 52 | { |
| 53 | /* Enable MAC interface */ |
| 54 | writel(CLK_MAC_REG | CLK_MAC_SLAVE | CLK_MAC_MASTER |
Vladimir Zapolskiy | 8bffd71 | 2015-07-06 07:22:11 +0300 | [diff] [blame] | 55 | #if defined(CONFIG_RMII) |
| 56 | | CLK_MAC_RMII, |
| 57 | #else |
| 58 | | CLK_MAC_MII, |
| 59 | #endif |
| 60 | &clk->macclk_ctrl); |
Albert ARIBAUD \(3ADEV\) | 391e163 | 2015-03-31 11:40:43 +0200 | [diff] [blame] | 61 | } |
Albert ARIBAUD \(3ADEV\) | 7c97f70 | 2015-03-31 11:40:44 +0200 | [diff] [blame] | 62 | |
| 63 | void lpc32xx_mlc_nand_init(void) |
| 64 | { |
| 65 | /* Enable NAND interface */ |
| 66 | writel(CLK_NAND_MLC | CLK_NAND_MLC_INT, &clk->flashclk_ctrl); |
| 67 | } |
Albert ARIBAUD \(3ADEV\) | b23324c | 2015-03-31 11:40:45 +0200 | [diff] [blame] | 68 | |
Vladimir Zapolskiy | 78f04f0 | 2015-07-18 03:07:52 +0300 | [diff] [blame] | 69 | void lpc32xx_slc_nand_init(void) |
| 70 | { |
| 71 | /* Enable SLC NAND interface */ |
| 72 | writel(CLK_NAND_SLC | CLK_NAND_SLC_SELECT, &clk->flashclk_ctrl); |
| 73 | } |
| 74 | |
Albert ARIBAUD \(3ADEV\) | b23324c | 2015-03-31 11:40:45 +0200 | [diff] [blame] | 75 | void lpc32xx_i2c_init(unsigned int devnum) |
| 76 | { |
| 77 | /* Enable I2C interface */ |
| 78 | uint32_t ctrl = readl(&clk->i2cclk_ctrl); |
| 79 | if (devnum == 1) |
| 80 | ctrl |= CLK_I2C1_ENABLE; |
| 81 | if (devnum == 2) |
| 82 | ctrl |= CLK_I2C2_ENABLE; |
| 83 | writel(ctrl, &clk->i2cclk_ctrl); |
| 84 | } |
Albert ARIBAUD \(3ADEV\) | eb135ad | 2015-03-31 11:40:46 +0200 | [diff] [blame] | 85 | |
| 86 | U_BOOT_DEVICE(lpc32xx_gpios) = { |
| 87 | .name = "gpio_lpc32xx" |
| 88 | }; |
Albert ARIBAUD \(3ADEV\) | 24bfa9d | 2015-03-31 11:40:47 +0200 | [diff] [blame] | 89 | |
| 90 | /* Mux for SCK0, MISO0, MOSI0. We do not use SSEL0. */ |
| 91 | |
| 92 | #define P_MUX_SET_SSP0 0x1600 |
| 93 | |
| 94 | void lpc32xx_ssp_init(void) |
| 95 | { |
| 96 | /* Enable SSP0 interface */ |
| 97 | writel(CLK_SSP0_ENABLE_CLOCK, &clk->ssp_ctrl); |
| 98 | /* Mux SSP0 pins */ |
| 99 | writel(P_MUX_SET_SSP0, &mux->p_mux_set); |
| 100 | } |