]>
Commit | Line | Data |
---|---|---|
507bbe3e | 1 | /* |
93768393 | 2 | * (C) Copyright 2008 - 2015 Michal Simek <[email protected]> |
53ea981c | 3 | * Clean driver and add xilinx constant from header file |
507bbe3e | 4 | * |
53ea981c | 5 | * (C) Copyright 2004 Atmark Techno, Inc. |
507bbe3e WD |
6 | * Yasushi SHOJI <[email protected]> |
7 | * | |
1a459660 | 8 | * SPDX-License-Identifier: GPL-2.0+ |
507bbe3e WD |
9 | */ |
10 | ||
11 | #include <config.h> | |
49a23e4a | 12 | #include <common.h> |
93768393 | 13 | #include <dm.h> |
53ea981c | 14 | #include <asm/io.h> |
49a23e4a MS |
15 | #include <linux/compiler.h> |
16 | #include <serial.h> | |
507bbe3e | 17 | |
93768393 MS |
18 | DECLARE_GLOBAL_DATA_PTR; |
19 | ||
20 | #define SR_TX_FIFO_FULL BIT(3) /* transmit FIFO full */ | |
21 | #define SR_TX_FIFO_EMPTY BIT(2) /* transmit FIFO empty */ | |
22 | #define SR_RX_FIFO_VALID_DATA BIT(0) /* data in receive FIFO */ | |
23 | #define SR_RX_FIFO_FULL BIT(1) /* receive FIFO full */ | |
507bbe3e | 24 | |
8c3bd6b5 MS |
25 | #define ULITE_CONTROL_RST_TX 0x01 |
26 | #define ULITE_CONTROL_RST_RX 0x02 | |
27 | ||
49a23e4a MS |
28 | struct uartlite { |
29 | unsigned int rx_fifo; | |
30 | unsigned int tx_fifo; | |
31 | unsigned int status; | |
8c3bd6b5 | 32 | unsigned int control; |
49a23e4a MS |
33 | }; |
34 | ||
93768393 MS |
35 | struct uartlite_platdata { |
36 | struct uartlite *regs; | |
49a23e4a MS |
37 | }; |
38 | ||
93768393 | 39 | static int uartlite_serial_putc(struct udevice *dev, const char ch) |
49a23e4a | 40 | { |
93768393 MS |
41 | struct uartlite_platdata *plat = dev_get_platdata(dev); |
42 | struct uartlite *regs = plat->regs; | |
49a23e4a | 43 | |
93768393 MS |
44 | if (in_be32(®s->status) & SR_TX_FIFO_FULL) |
45 | return -EAGAIN; | |
49a23e4a | 46 | |
93768393 | 47 | out_be32(®s->tx_fifo, ch & 0xff); |
49a23e4a | 48 | |
93768393 | 49 | return 0; |
49a23e4a MS |
50 | } |
51 | ||
93768393 | 52 | static int uartlite_serial_getc(struct udevice *dev) |
49a23e4a | 53 | { |
93768393 MS |
54 | struct uartlite_platdata *plat = dev_get_platdata(dev); |
55 | struct uartlite *regs = plat->regs; | |
56 | ||
57 | if (!(in_be32(®s->status) & SR_RX_FIFO_VALID_DATA)) | |
58 | return -EAGAIN; | |
49a23e4a | 59 | |
49a23e4a MS |
60 | return in_be32(®s->rx_fifo) & 0xff; |
61 | } | |
62 | ||
93768393 | 63 | static int uartlite_serial_pending(struct udevice *dev, bool input) |
49a23e4a | 64 | { |
93768393 MS |
65 | struct uartlite_platdata *plat = dev_get_platdata(dev); |
66 | struct uartlite *regs = plat->regs; | |
507bbe3e | 67 | |
93768393 MS |
68 | if (input) |
69 | return in_be32(®s->status) & SR_RX_FIFO_VALID_DATA; | |
70 | ||
71 | return !(in_be32(®s->status) & SR_TX_FIFO_EMPTY); | |
49a23e4a MS |
72 | } |
73 | ||
93768393 | 74 | static int uartlite_serial_probe(struct udevice *dev) |
25239e12 | 75 | { |
93768393 MS |
76 | struct uartlite_platdata *plat = dev_get_platdata(dev); |
77 | struct uartlite *regs = plat->regs; | |
8c3bd6b5 | 78 | |
93768393 MS |
79 | out_be32(®s->control, 0); |
80 | out_be32(®s->control, ULITE_CONTROL_RST_RX | ULITE_CONTROL_RST_TX); | |
81 | in_be32(®s->control); | |
25239e12 | 82 | |
93768393 | 83 | return 0; |
90bad891 | 84 | } |
49a23e4a | 85 | |
93768393 | 86 | static int uartlite_serial_ofdata_to_platdata(struct udevice *dev) |
49a23e4a | 87 | { |
93768393 | 88 | struct uartlite_platdata *plat = dev_get_platdata(dev); |
87d69229 | 89 | |
93768393 MS |
90 | plat->regs = (struct uartlite *)dev_get_addr(dev); |
91 | ||
92 | return 0; | |
87d69229 | 93 | } |
93768393 MS |
94 | |
95 | static const struct dm_serial_ops uartlite_serial_ops = { | |
96 | .putc = uartlite_serial_putc, | |
97 | .pending = uartlite_serial_pending, | |
98 | .getc = uartlite_serial_getc, | |
99 | }; | |
100 | ||
101 | static const struct udevice_id uartlite_serial_ids[] = { | |
102 | { .compatible = "xlnx,opb-uartlite-1.00.b", }, | |
103 | { .compatible = "xlnx,xps-uartlite-1.00.a" }, | |
104 | { } | |
105 | }; | |
106 | ||
107 | U_BOOT_DRIVER(serial_uartlite) = { | |
108 | .name = "serial_uartlite", | |
109 | .id = UCLASS_SERIAL, | |
110 | .of_match = uartlite_serial_ids, | |
111 | .ofdata_to_platdata = uartlite_serial_ofdata_to_platdata, | |
112 | .platdata_auto_alloc_size = sizeof(struct uartlite_platdata), | |
113 | .probe = uartlite_serial_probe, | |
114 | .ops = &uartlite_serial_ops, | |
115 | .flags = DM_FLAG_PRE_RELOC, | |
116 | }; |