Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 SAMSUNG Electronics |
| 3 | * Minkyu Kang <mk7.kang@samsung.com> |
| 4 | * Heungjun Kim <riverful.kim@samsung.com> |
| 5 | * |
| 6 | * based on drivers/serial/s3c64xx.c |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 7 | * |
| 8 | * SPDX-License-Identifier: GPL-2.0+ |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <dm.h> |
| 13 | #include <errno.h> |
| 14 | #include <fdtdec.h> |
| 15 | #include <linux/compiler.h> |
| 16 | #include <asm/io.h> |
Googler | 0bcd236 | 2023-05-09 16:45:27 +0800 | [diff] [blame] | 17 | #include <asm/arch/uart.h> |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 18 | #include <asm/arch/clk.h> |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 19 | #include <serial.h> |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | #define RX_FIFO_COUNT_SHIFT 0 |
| 24 | #define RX_FIFO_COUNT_MASK (0xff << RX_FIFO_COUNT_SHIFT) |
| 25 | #define RX_FIFO_FULL (1 << 8) |
| 26 | #define TX_FIFO_COUNT_SHIFT 16 |
| 27 | #define TX_FIFO_COUNT_MASK (0xff << TX_FIFO_COUNT_SHIFT) |
| 28 | #define TX_FIFO_FULL (1 << 24) |
| 29 | |
| 30 | /* Information about a serial port */ |
| 31 | struct s5p_serial_platdata { |
| 32 | struct s5p_uart *reg; /* address of registers in physical memory */ |
| 33 | u8 port_id; /* uart port number */ |
| 34 | }; |
| 35 | |
| 36 | /* |
| 37 | * The coefficient, used to calculate the baudrate on S5P UARTs is |
| 38 | * calculated as |
| 39 | * C = UBRDIV * 16 + number_of_set_bits_in_UDIVSLOT |
| 40 | * however, section 31.6.11 of the datasheet doesn't recomment using 1 for 1, |
| 41 | * 3 for 2, ... (2^n - 1) for n, instead, they suggest using these constants: |
| 42 | */ |
| 43 | static const int udivslot[] = { |
| 44 | 0, |
| 45 | 0x0080, |
| 46 | 0x0808, |
| 47 | 0x0888, |
| 48 | 0x2222, |
| 49 | 0x4924, |
| 50 | 0x4a52, |
| 51 | 0x54aa, |
| 52 | 0x5555, |
| 53 | 0xd555, |
| 54 | 0xd5d5, |
| 55 | 0xddd5, |
| 56 | 0xdddd, |
| 57 | 0xdfdd, |
| 58 | 0xdfdf, |
| 59 | 0xffdf, |
| 60 | }; |
| 61 | |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 62 | int s5p_serial_setbrg(struct udevice *dev, int baudrate) |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 63 | { |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 64 | struct s5p_serial_platdata *plat = dev->platdata; |
| 65 | struct s5p_uart *const uart = plat->reg; |
| 66 | u32 uclk = get_uart_clk(plat->port_id); |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 67 | u32 val; |
| 68 | |
| 69 | val = uclk / baudrate; |
| 70 | |
| 71 | writel(val / 16 - 1, &uart->ubrdiv); |
| 72 | |
| 73 | if (s5p_uart_divslot()) |
| 74 | writew(udivslot[val % 16], &uart->rest.slot); |
| 75 | else |
| 76 | writeb(val % 16, &uart->rest.value); |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static int s5p_serial_probe(struct udevice *dev) |
| 82 | { |
| 83 | struct s5p_serial_platdata *plat = dev->platdata; |
| 84 | struct s5p_uart *const uart = plat->reg; |
| 85 | |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 86 | /* enable FIFOs, auto clear Rx FIFO */ |
| 87 | writel(0x3, &uart->ufcon); |
| 88 | writel(0, &uart->umcon); |
| 89 | /* 8N1 */ |
| 90 | writel(0x3, &uart->ulcon); |
| 91 | /* No interrupts, no DMA, pure polling */ |
| 92 | writel(0x245, &uart->ucon); |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | static int serial_err_check(const struct s5p_uart *const uart, int op) |
| 98 | { |
| 99 | unsigned int mask; |
| 100 | |
| 101 | /* |
| 102 | * UERSTAT |
| 103 | * Break Detect [3] |
| 104 | * Frame Err [2] : receive operation |
| 105 | * Parity Err [1] : receive operation |
| 106 | * Overrun Err [0] : receive operation |
| 107 | */ |
| 108 | if (op) |
| 109 | mask = 0x8; |
| 110 | else |
| 111 | mask = 0xf; |
| 112 | |
| 113 | return readl(&uart->uerstat) & mask; |
| 114 | } |
| 115 | |
| 116 | static int s5p_serial_getc(struct udevice *dev) |
| 117 | { |
| 118 | struct s5p_serial_platdata *plat = dev->platdata; |
| 119 | struct s5p_uart *const uart = plat->reg; |
| 120 | |
| 121 | if (!(readl(&uart->ufstat) & RX_FIFO_COUNT_MASK)) |
| 122 | return -EAGAIN; |
| 123 | |
| 124 | serial_err_check(uart, 0); |
| 125 | return (int)(readb(&uart->urxh) & 0xff); |
| 126 | } |
| 127 | |
| 128 | static int s5p_serial_putc(struct udevice *dev, const char ch) |
| 129 | { |
| 130 | struct s5p_serial_platdata *plat = dev->platdata; |
| 131 | struct s5p_uart *const uart = plat->reg; |
| 132 | |
| 133 | if (readl(&uart->ufstat) & TX_FIFO_FULL) |
| 134 | return -EAGAIN; |
| 135 | |
| 136 | writeb(ch, &uart->utxh); |
| 137 | serial_err_check(uart, 1); |
| 138 | |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | static int s5p_serial_pending(struct udevice *dev, bool input) |
| 143 | { |
| 144 | struct s5p_serial_platdata *plat = dev->platdata; |
| 145 | struct s5p_uart *const uart = plat->reg; |
| 146 | uint32_t ufstat = readl(&uart->ufstat); |
| 147 | |
| 148 | if (input) |
| 149 | return (ufstat & RX_FIFO_COUNT_MASK) >> RX_FIFO_COUNT_SHIFT; |
| 150 | else |
| 151 | return (ufstat & TX_FIFO_COUNT_MASK) >> TX_FIFO_COUNT_SHIFT; |
| 152 | } |
| 153 | |
| 154 | static int s5p_serial_ofdata_to_platdata(struct udevice *dev) |
| 155 | { |
| 156 | struct s5p_serial_platdata *plat = dev->platdata; |
| 157 | fdt_addr_t addr; |
| 158 | |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 159 | addr = fdtdec_get_addr(gd->fdt_blob, dev->of_offset, "reg"); |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 160 | if (addr == FDT_ADDR_T_NONE) |
| 161 | return -EINVAL; |
| 162 | |
| 163 | plat->reg = (struct s5p_uart *)addr; |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 164 | plat->port_id = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "id", -1); |
| 165 | |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | static const struct dm_serial_ops s5p_serial_ops = { |
| 170 | .putc = s5p_serial_putc, |
| 171 | .pending = s5p_serial_pending, |
| 172 | .getc = s5p_serial_getc, |
| 173 | .setbrg = s5p_serial_setbrg, |
| 174 | }; |
| 175 | |
| 176 | static const struct udevice_id s5p_serial_ids[] = { |
| 177 | { .compatible = "samsung,exynos4210-uart" }, |
| 178 | { } |
| 179 | }; |
| 180 | |
| 181 | U_BOOT_DRIVER(serial_s5p) = { |
| 182 | .name = "serial_s5p", |
| 183 | .id = UCLASS_SERIAL, |
| 184 | .of_match = s5p_serial_ids, |
| 185 | .ofdata_to_platdata = s5p_serial_ofdata_to_platdata, |
| 186 | .platdata_auto_alloc_size = sizeof(struct s5p_serial_platdata), |
| 187 | .probe = s5p_serial_probe, |
| 188 | .ops = &s5p_serial_ops, |
Googler | bd67ccb | 2023-03-14 15:50:59 +0800 | [diff] [blame^] | 189 | .flags = DM_FLAG_PRE_RELOC, |
Googler | e00b8eb | 2019-07-08 16:37:07 -0700 | [diff] [blame] | 190 | }; |