blob: 0a707ca730d616341640c84ac0128a6a48c9464e [file] [log] [blame]
wdenk7ac16102004-08-01 22:48:16 +00001#ifndef __SERIAL_H__
2#define __SERIAL_H__
3
Mike Frysinger078f2f12011-05-14 06:56:15 +00004#include <post.h>
5
wdenk7ac16102004-08-01 22:48:16 +00006struct serial_device {
Mike Frysinger6b300dc2011-11-10 14:11:04 +00007 /* enough bytes to match alignment of following func pointer */
Marek Vasut80919de2012-09-07 14:32:10 +02008 char name[16];
wdenk7ac16102004-08-01 22:48:16 +00009
Marek Vasutb46931d2012-09-07 14:35:31 +020010 int (*start)(void);
11 int (*stop)(void);
Marek Vasut80919de2012-09-07 14:32:10 +020012 void (*setbrg)(void);
13 int (*getc)(void);
14 int (*tstc)(void);
15 void (*putc)(const char c);
16 void (*puts)(const char *s);
Tom Rini3dd5d4a2022-12-04 10:14:17 -050017#if CFG_POST & CFG_SYS_POST_UART
Marek Vasut80919de2012-09-07 14:32:10 +020018 void (*loop)(int);
Mike Frysinger078f2f12011-05-14 06:56:15 +000019#endif
Marek Vasut80919de2012-09-07 14:32:10 +020020 struct serial_device *next;
wdenk7ac16102004-08-01 22:48:16 +000021};
22
Marek Vasut6b9124e2012-10-06 14:07:01 +000023void default_serial_puts(const char *s);
24
wdenk7ac16102004-08-01 22:48:16 +000025extern struct serial_device serial_smc_device;
Sean Andersond4f131a2022-03-22 16:59:24 -040026extern struct serial_device serial_smh_device;
wdenk7ac16102004-08-01 22:48:16 +000027extern struct serial_device serial_scc_device;
Gerlando Falauto34148d62011-11-18 06:49:11 +000028extern struct serial_device *default_serial_console(void);
wdenk7ac16102004-08-01 22:48:16 +000029
Heiko Schocher20280122017-06-27 16:49:14 +020030#if defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) || \
Heiko Schocher6f90e582017-06-14 05:49:40 +020031 defined(CONFIG_MPC86xx) || \
Trevor Woerner513f6402020-05-06 08:02:41 -040032 defined(CONFIG_ARCH_TEGRA) || defined(CONFIG_SYS_COREBOOT) || \
Michal Simekf5c5b3f2012-07-02 12:38:14 +020033 defined(CONFIG_MICROBLAZE)
wdenk96c7a8c2005-01-09 22:28:56 +000034extern struct serial_device serial0_device;
35extern struct serial_device serial1_device;
Marek Vasut3f085062012-09-12 20:02:05 +020036#endif
37
Wolfgang Denk44df5612006-08-30 23:02:10 +020038extern struct serial_device eserial1_device;
39extern struct serial_device eserial2_device;
Lokesh Vutlaabb44e62016-05-16 11:47:29 +053040extern struct serial_device eserial3_device;
41extern struct serial_device eserial4_device;
42extern struct serial_device eserial5_device;
43extern struct serial_device eserial6_device;
wdenk96c7a8c2005-01-09 22:28:56 +000044
Mike Frysinger53ba3222011-04-29 23:23:28 -040045extern void serial_register(struct serial_device *);
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020046extern void serial_stdio_init(void);
Gerlando Falauto92999582011-11-18 06:49:12 +000047extern int serial_assign(const char *name);
wdenk7ac16102004-08-01 22:48:16 +000048extern void serial_reinit_all(void);
Ovidiu Panait96008c92020-07-24 14:12:22 +030049int serial_initialize(void);
wdenk7ac16102004-08-01 22:48:16 +000050
Simon Glass247f5962014-09-04 16:27:26 -060051struct udevice;
52
Patrick Delaunay830e35e2018-05-17 14:50:44 +020053enum serial_par {
54 SERIAL_PAR_NONE,
55 SERIAL_PAR_ODD,
56 SERIAL_PAR_EVEN
57};
58
Patrice Chotard46c1d9f2018-08-03 15:07:38 +020059#define SERIAL_PAR_SHIFT 0
60#define SERIAL_PAR_MASK (0x03 << SERIAL_PAR_SHIFT)
Andy Shevchenko08e98792018-11-20 23:52:32 +020061#define SERIAL_SET_PARITY(parity) \
62 ((parity << SERIAL_PAR_SHIFT) & SERIAL_PAR_MASK)
Patrice Chotard46c1d9f2018-08-03 15:07:38 +020063#define SERIAL_GET_PARITY(config) \
64 ((config & SERIAL_PAR_MASK) >> SERIAL_PAR_SHIFT)
65
66enum serial_bits {
67 SERIAL_5_BITS,
68 SERIAL_6_BITS,
69 SERIAL_7_BITS,
70 SERIAL_8_BITS
71};
72
73#define SERIAL_BITS_SHIFT 2
74#define SERIAL_BITS_MASK (0x3 << SERIAL_BITS_SHIFT)
Andy Shevchenko08e98792018-11-20 23:52:32 +020075#define SERIAL_SET_BITS(bits) \
76 ((bits << SERIAL_BITS_SHIFT) & SERIAL_BITS_MASK)
Patrice Chotard46c1d9f2018-08-03 15:07:38 +020077#define SERIAL_GET_BITS(config) \
78 ((config & SERIAL_BITS_MASK) >> SERIAL_BITS_SHIFT)
79
80enum serial_stop {
81 SERIAL_HALF_STOP, /* 0.5 stop bit */
82 SERIAL_ONE_STOP, /* 1 stop bit */
83 SERIAL_ONE_HALF_STOP, /* 1.5 stop bit */
84 SERIAL_TWO_STOP /* 2 stop bit */
85};
86
87#define SERIAL_STOP_SHIFT 4
88#define SERIAL_STOP_MASK (0x3 << SERIAL_STOP_SHIFT)
Andy Shevchenko08e98792018-11-20 23:52:32 +020089#define SERIAL_SET_STOP(stop) \
90 ((stop << SERIAL_STOP_SHIFT) & SERIAL_STOP_MASK)
Patrice Chotard46c1d9f2018-08-03 15:07:38 +020091#define SERIAL_GET_STOP(config) \
92 ((config & SERIAL_STOP_MASK) >> SERIAL_STOP_SHIFT)
93
Patrice Chotard70ed0ea2018-08-03 15:07:41 +020094#define SERIAL_CONFIG(par, bits, stop) \
95 (par << SERIAL_PAR_SHIFT | \
96 bits << SERIAL_BITS_SHIFT | \
97 stop << SERIAL_STOP_SHIFT)
98
Andy Shevchenko08e98792018-11-20 23:52:32 +020099#define SERIAL_DEFAULT_CONFIG \
100 (SERIAL_PAR_NONE << SERIAL_PAR_SHIFT | \
101 SERIAL_8_BITS << SERIAL_BITS_SHIFT | \
102 SERIAL_ONE_STOP << SERIAL_STOP_SHIFT)
Patrice Chotard46c1d9f2018-08-03 15:07:38 +0200103
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200104enum serial_chip_type {
105 SERIAL_CHIP_UNKNOWN = -1,
106 SERIAL_CHIP_16550_COMPATIBLE,
Maximilian Bruneb25c4222024-10-23 15:19:48 +0200107 SERIAL_CHIP_PL01X,
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200108};
109
110enum adr_space_type {
111 SERIAL_ADDRESS_SPACE_MEMORY = 0,
112 SERIAL_ADDRESS_SPACE_IO,
113};
114
115/**
116 * struct serial_device_info - structure to hold serial device info
117 *
118 * @type: type of the UART chip
119 * @addr_space: address space to access the registers
120 * @addr: physical address of the registers
Simon Glass4289c262023-09-26 08:14:58 -0600121 * @size: size of the register area in bytes
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200122 * @reg_width: size (in bytes) of the IO accesses to the registers
123 * @reg_offset: offset to apply to the @addr from the start of the registers
124 * @reg_shift: quantity to shift the register offsets by
Andy Shevchenko106930e2020-02-27 17:21:54 +0200125 * @clock: UART base clock speed in Hz
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200126 * @baudrate: baud rate
127 */
128struct serial_device_info {
129 enum serial_chip_type type;
130 enum adr_space_type addr_space;
131 ulong addr;
Simon Glass4289c262023-09-26 08:14:58 -0600132 ulong size;
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200133 u8 reg_width;
134 u8 reg_offset;
135 u8 reg_shift;
Andy Shevchenko106930e2020-02-27 17:21:54 +0200136 unsigned int clock;
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200137 unsigned int baudrate;
138};
139
140#define SERIAL_DEFAULT_ADDRESS 0xBADACCE5
Andy Shevchenko106930e2020-02-27 17:21:54 +0200141#define SERIAL_DEFAULT_CLOCK (16 * 115200)
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200142
Simon Glass247f5962014-09-04 16:27:26 -0600143/**
144 * struct struct dm_serial_ops - Driver model serial operations
145 *
146 * The uclass interface is implemented by all serial devices which use
147 * driver model.
148 */
149struct dm_serial_ops {
150 /**
151 * setbrg() - Set up the baud rate generator
152 *
153 * Adjust baud rate divisors to set up a new baud rate for this
154 * device. Not all devices will support all rates. If the rate
155 * cannot be supported, the driver is free to select the nearest
156 * available rate. or return -EINVAL if this is not possible.
157 *
158 * @dev: Device pointer
159 * @baudrate: New baud rate to use
160 * @return 0 if OK, -ve on error
161 */
162 int (*setbrg)(struct udevice *dev, int baudrate);
163 /**
164 * getc() - Read a character and return it
165 *
166 * If no character is available, this should return -EAGAIN without
167 * waiting.
168 *
169 * @dev: Device pointer
170 * @return character (0..255), -ve on error
171 */
172 int (*getc)(struct udevice *dev);
173 /**
174 * putc() - Write a character
175 *
176 * @dev: Device pointer
177 * @ch: character to write
178 * @return 0 if OK, -ve on error
179 */
180 int (*putc)(struct udevice *dev, const char ch);
181 /**
Sean Andersonaa22f972022-03-22 16:59:34 -0400182 * puts() - Write a string
183 *
184 * This writes a string. This function should be implemented only if
185 * writing multiple characters at once is more performant than just
186 * calling putc() in a loop.
187 *
188 * If the whole string cannot be written at once, then this function
189 * should return the number of characters written. Returning a negative
190 * error code implies that no characters were written. If this function
191 * returns 0, then it will be called again with the same arguments.
192 *
193 * @dev: Device pointer
194 * @s: The string to write
195 * @len: The length of the string to write.
196 * @return The number of characters written on success, or -ve on error
197 */
198 ssize_t (*puts)(struct udevice *dev, const char *s, size_t len);
199 /**
Simon Glass247f5962014-09-04 16:27:26 -0600200 * pending() - Check if input/output characters are waiting
201 *
202 * This can be used to return an indication of the number of waiting
203 * characters if the driver knows this (e.g. by looking at the FIFO
204 * level). It is acceptable to return 1 if an indeterminant number
205 * of characters is waiting.
206 *
207 * This method is optional.
208 *
209 * @dev: Device pointer
210 * @input: true to check input characters, false for output
211 * @return number of waiting characters, 0 for none, -ve on error
212 */
213 int (*pending)(struct udevice *dev, bool input);
214 /**
215 * clear() - Clear the serial FIFOs/holding registers
216 *
217 * This method is optional.
218 *
219 * This quickly clears any input/output characters from the UART.
220 * If this is not possible, but characters still exist, then it
221 * is acceptable to return -EAGAIN (try again) or -EINVAL (not
222 * supported).
223 *
224 * @dev: Device pointer
225 * @return 0 if OK, -ve on error
226 */
227 int (*clear)(struct udevice *dev);
Tom Rini3dd5d4a2022-12-04 10:14:17 -0500228#if CFG_POST & CFG_SYS_POST_UART
Simon Glass247f5962014-09-04 16:27:26 -0600229 /**
230 * loop() - Control serial device loopback mode
231 *
232 * @dev: Device pointer
233 * @on: 1 to turn loopback on, 0 to turn if off
234 */
235 int (*loop)(struct udevice *dev, int on);
236#endif
Patrice Chotard46c1d9f2018-08-03 15:07:38 +0200237
238 /**
Andy Shevchenko08e98792018-11-20 23:52:32 +0200239 * getconfig() - Get the uart configuration
240 * (parity, 5/6/7/8 bits word length, stop bits)
241 *
242 * Get a current config for this device.
243 *
244 * @dev: Device pointer
Simon Glassc9af82c2018-12-28 14:23:11 -0700245 * @serial_config: Returns config information (see SERIAL_... above)
Andy Shevchenko08e98792018-11-20 23:52:32 +0200246 * @return 0 if OK, -ve on error
247 */
248 int (*getconfig)(struct udevice *dev, uint *serial_config);
249 /**
Patrice Chotard46c1d9f2018-08-03 15:07:38 +0200250 * setconfig() - Set up the uart configuration
251 * (parity, 5/6/7/8 bits word length, stop bits)
252 *
253 * Set up a new config for this device.
254 *
255 * @dev: Device pointer
Simon Goldschmidt6b981d02018-11-02 21:08:16 +0100256 * @serial_config: number of bits, parity and number of stopbits to use
Patrice Chotard46c1d9f2018-08-03 15:07:38 +0200257 * @return 0 if OK, -ve on error
258 */
259 int (*setconfig)(struct udevice *dev, uint serial_config);
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200260 /**
261 * getinfo() - Get serial device information
262 *
263 * @dev: Device pointer
264 * @info: struct serial_device_info to fill
Simon Glassc9af82c2018-12-28 14:23:11 -0700265 * @return 0 if OK, -ve on error
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200266 */
267 int (*getinfo)(struct udevice *dev, struct serial_device_info *info);
Simon Glass247f5962014-09-04 16:27:26 -0600268};
269
270/**
271 * struct serial_dev_priv - information about a device used by the uclass
272 *
Stefan Roese02072832017-08-16 17:37:16 +0200273 * @sdev: stdio device attached to this uart
274 *
275 * @buf: Pointer to the RX buffer
276 * @rd_ptr: Read pointer in the RX buffer
277 * @wr_ptr: Write pointer in the RX buffer
Simon Glass247f5962014-09-04 16:27:26 -0600278 */
279struct serial_dev_priv {
280 struct stdio_dev *sdev;
Stefan Roese02072832017-08-16 17:37:16 +0200281
Rasmus Villemoesb17bccc92024-10-03 16:10:29 +0200282#if CONFIG_IS_ENABLED(SERIAL_RX_BUFFER)
283 char buf[CONFIG_SERIAL_RX_BUFFER_SIZE];
Rasmus Villemoes50fc1882024-10-03 16:10:26 +0200284 uint rd_ptr;
285 uint wr_ptr;
Rasmus Villemoesb17bccc92024-10-03 16:10:29 +0200286#endif
Simon Glass247f5962014-09-04 16:27:26 -0600287};
288
289/* Access the serial operations for a device */
290#define serial_get_ops(dev) ((struct dm_serial_ops *)(dev)->driver->ops)
291
Simon Glassc9af82c2018-12-28 14:23:11 -0700292/**
293 * serial_getconfig() - Get the uart configuration
294 * (parity, 5/6/7/8 bits word length, stop bits)
295 *
296 * Get a current config for this device.
297 *
298 * @dev: Device pointer
299 * @serial_config: Returns config information (see SERIAL_... above)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100300 * Return: 0 if OK, -ve on error
Simon Glassc9af82c2018-12-28 14:23:11 -0700301 */
Simon Glassdaaff932018-12-28 14:23:08 -0700302int serial_getconfig(struct udevice *dev, uint *config);
Simon Glassc9af82c2018-12-28 14:23:11 -0700303
304/**
305 * serial_setconfig() - Set up the uart configuration
306 * (parity, 5/6/7/8 bits word length, stop bits)
307 *
308 * Set up a new config for this device.
309 *
310 * @dev: Device pointer
311 * @serial_config: number of bits, parity and number of stopbits to use
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100312 * Return: 0 if OK, -ve on error
Simon Glassc9af82c2018-12-28 14:23:11 -0700313 */
Simon Glassde62d482018-12-28 14:23:09 -0700314int serial_setconfig(struct udevice *dev, uint config);
Simon Glassc9af82c2018-12-28 14:23:11 -0700315
316/**
317 * serial_getinfo() - Get serial device information
318 *
319 * @dev: Device pointer
320 * @info: struct serial_device_info to fill
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100321 * Return: 0 if OK, -ve on error
Simon Glassc9af82c2018-12-28 14:23:11 -0700322 */
Simon Glass896c1642018-12-28 14:23:10 -0700323int serial_getinfo(struct udevice *dev, struct serial_device_info *info);
Simon Glass925c0002018-12-28 14:23:07 -0700324
Algapally Santosh Sagardf178992023-09-21 16:50:43 +0530325/**
326 * fetch_baud_from_dtb() - Fetch the baudrate value from DT
327 *
328 * Return: baudrate if OK, -ve on error
329 */
330int fetch_baud_from_dtb(void);
331
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100332void atmel_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100333void mcf_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100334void mpc85xx_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100335void mxc_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100336void ns16550_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100337void pl01x_serial_initialize(void);
338void pxa_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100339void sh_serial_initialize(void);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100340
Simon Glassbd7a59a2019-11-14 12:57:23 -0700341/**
342 * serial_printf() - Write a formatted string to the serial console
343 *
344 * The total size of the output must be less than CONFIG_SYS_PBSIZE.
345 *
346 * @fmt: Printf format string, followed by format arguments
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100347 * Return: number of characters written
Simon Glassbd7a59a2019-11-14 12:57:23 -0700348 */
349int serial_printf(const char *fmt, ...)
350 __attribute__ ((format (__printf__, 1, 2)));
351
Simon Glass36736182019-11-14 12:57:24 -0700352int serial_init(void);
353void serial_setbrg(void);
354void serial_putc(const char ch);
355void serial_putc_raw(const char ch);
356void serial_puts(const char *str);
Pali Rohára48a24f2022-09-05 11:31:19 +0200357#if defined(CONFIG_CONSOLE_FLUSH_SUPPORT) && CONFIG_IS_ENABLED(DM_SERIAL)
358void serial_flush(void);
359#else
360static inline void serial_flush(void) {}
361#endif
Simon Glass36736182019-11-14 12:57:24 -0700362int serial_getc(void);
363int serial_tstc(void);
364
wdenk7ac16102004-08-01 22:48:16 +0000365#endif