blob: 399b07c5420ab2b4cecab4f0a3dd4232011fe9d4 [file] [log] [blame]
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +00001/*
2 * Copyright (C) 2011 by Vladimir Zapolskiy <vz@mleia.com>
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +00005 */
6
7#include <common.h>
Vladimir Zapolskiy8bf94502015-12-19 23:29:25 +02008#include <dm.h>
9#include <ns16550.h>
10#include <dm/platform_data/lpc32xx_hsuart.h>
11
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000012#include <asm/arch/clk.h>
13#include <asm/arch/uart.h>
Albert ARIBAUD \(3ADEV\)24bfa9d2015-03-31 11:40:47 +020014#include <asm/arch/mux.h>
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000015#include <asm/io.h>
16
17static struct clk_pm_regs *clk = (struct clk_pm_regs *)CLK_PM_BASE;
18static struct uart_ctrl_regs *ctrl = (struct uart_ctrl_regs *)UART_CTRL_BASE;
Albert ARIBAUD \(3ADEV\)24bfa9d2015-03-31 11:40:47 +020019static struct mux_regs *mux = (struct mux_regs *)MUX_BASE;
Vladimir Zapolskiy6b20ef82012-04-19 04:33:08 +000020
21void lpc32xx_uart_init(unsigned int uart_id)
22{
23 if (uart_id < 1 || uart_id > 7)
24 return;
25
26 /* Disable loopback mode, if it is set by S1L bootloader */
27 clrbits_le32(&ctrl->loop,
28 UART_LOOPBACK(CONFIG_SYS_LPC32XX_UART));
29
30 if (uart_id < 3 || uart_id > 6)
31 return;
32
33 /* Enable UART system clock */
34 setbits_le32(&clk->uartclk_ctrl, CLK_UART(uart_id));
35
36 /* Set UART into autoclock mode */
37 clrsetbits_le32(&ctrl->clkmode,
38 UART_CLKMODE_MASK(uart_id),
39 UART_CLKMODE_AUTO(uart_id));
40
41 /* Bypass pre-divider of UART clock */
42 writel(CLK_UART_X_DIV(1) | CLK_UART_Y_DIV(1),
43 &clk->u3clk + (uart_id - 3));
44}
Albert ARIBAUD \(3ADEV\)391e1632015-03-31 11:40:43 +020045
Vladimir Zapolskiy45e3fd92015-12-19 23:29:26 +020046#if !CONFIG_IS_ENABLED(OF_CONTROL)
Vladimir Zapolskiy8bf94502015-12-19 23:29:25 +020047static const struct ns16550_platdata lpc32xx_uart[] = {
Adam Fordd1e22fa2016-03-07 21:08:49 -060048 { .base = UART3_BASE, .reg_shift = 2, .clock = CONFIG_SYS_NS16550_CLK },
49 { .base = UART4_BASE, .reg_shift = 2, .clock = CONFIG_SYS_NS16550_CLK },
50 { .base = UART5_BASE, .reg_shift = 2, .clock = CONFIG_SYS_NS16550_CLK },
51 { .base = UART6_BASE, .reg_shift = 2, .clock = CONFIG_SYS_NS16550_CLK },
Vladimir Zapolskiy8bf94502015-12-19 23:29:25 +020052};
53
54#if defined(CONFIG_LPC32XX_HSUART)
55static const struct lpc32xx_hsuart_platdata lpc32xx_hsuart[] = {
56 { HS_UART1_BASE, },
57 { HS_UART2_BASE, },
58 { HS_UART7_BASE, },
59};
60#endif
61
62U_BOOT_DEVICES(lpc32xx_uarts) = {
63#if defined(CONFIG_LPC32XX_HSUART)
64 { "lpc32xx_hsuart", &lpc32xx_hsuart[0], },
65 { "lpc32xx_hsuart", &lpc32xx_hsuart[1], },
66#endif
67 { "ns16550_serial", &lpc32xx_uart[0], },
68 { "ns16550_serial", &lpc32xx_uart[1], },
69 { "ns16550_serial", &lpc32xx_uart[2], },
70 { "ns16550_serial", &lpc32xx_uart[3], },
71#if defined(CONFIG_LPC32XX_HSUART)
72 { "lpc32xx_hsuart", &lpc32xx_hsuart[2], },
73#endif
74};
75#endif
76
Sylvain Lemieux90a837f2015-08-10 08:16:31 -040077void lpc32xx_dma_init(void)
78{
79 /* Enable DMA interface */
Vladimir Zapolskiyb7f8ed22015-08-27 03:16:48 +030080 writel(CLK_DMA_ENABLE, &clk->dmaclk_ctrl);
Sylvain Lemieux90a837f2015-08-10 08:16:31 -040081}
82
Albert ARIBAUD \(3ADEV\)391e1632015-03-31 11:40:43 +020083void lpc32xx_mac_init(void)
84{
85 /* Enable MAC interface */
86 writel(CLK_MAC_REG | CLK_MAC_SLAVE | CLK_MAC_MASTER
Vladimir Zapolskiy8bffd712015-07-06 07:22:11 +030087#if defined(CONFIG_RMII)
88 | CLK_MAC_RMII,
89#else
90 | CLK_MAC_MII,
91#endif
92 &clk->macclk_ctrl);
Albert ARIBAUD \(3ADEV\)391e1632015-03-31 11:40:43 +020093}
Albert ARIBAUD \(3ADEV\)7c97f702015-03-31 11:40:44 +020094
95void lpc32xx_mlc_nand_init(void)
96{
97 /* Enable NAND interface */
98 writel(CLK_NAND_MLC | CLK_NAND_MLC_INT, &clk->flashclk_ctrl);
99}
Albert ARIBAUD \(3ADEV\)b23324c2015-03-31 11:40:45 +0200100
Vladimir Zapolskiy78f04f02015-07-18 03:07:52 +0300101void lpc32xx_slc_nand_init(void)
102{
103 /* Enable SLC NAND interface */
104 writel(CLK_NAND_SLC | CLK_NAND_SLC_SELECT, &clk->flashclk_ctrl);
105}
106
Sylvain Lemieux890cc772015-08-13 15:40:22 -0400107void lpc32xx_usb_init(void)
108{
109 /* Do not route the UART 5 Tx/Rx pins to the USB D+ and USB D- pins. */
110 clrbits_le32(&ctrl->ctrl, UART_CTRL_UART5_USB_MODE);
111}
112
Albert ARIBAUD \(3ADEV\)b23324c2015-03-31 11:40:45 +0200113void lpc32xx_i2c_init(unsigned int devnum)
114{
115 /* Enable I2C interface */
116 uint32_t ctrl = readl(&clk->i2cclk_ctrl);
117 if (devnum == 1)
118 ctrl |= CLK_I2C1_ENABLE;
119 if (devnum == 2)
120 ctrl |= CLK_I2C2_ENABLE;
121 writel(ctrl, &clk->i2cclk_ctrl);
122}
Albert ARIBAUD \(3ADEV\)eb135ad2015-03-31 11:40:46 +0200123
124U_BOOT_DEVICE(lpc32xx_gpios) = {
125 .name = "gpio_lpc32xx"
126};
Albert ARIBAUD \(3ADEV\)24bfa9d2015-03-31 11:40:47 +0200127
128/* Mux for SCK0, MISO0, MOSI0. We do not use SSEL0. */
129
130#define P_MUX_SET_SSP0 0x1600
131
132void lpc32xx_ssp_init(void)
133{
134 /* Enable SSP0 interface */
135 writel(CLK_SSP0_ENABLE_CLOCK, &clk->ssp_ctrl);
136 /* Mux SSP0 pins */
137 writel(P_MUX_SET_SSP0, &mux->p_mux_set);
138}