Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 8 | #include <command.h> |
Christophe Leroy | 12bbc0f | 2018-11-21 08:51:49 +0000 | [diff] [blame] | 9 | #include <dm.h> |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 10 | #include <serial.h> |
| 11 | #include <watchdog.h> |
Christophe Leroy | 10ff63a | 2018-03-16 17:20:43 +0100 | [diff] [blame] | 12 | #include <asm/cpm_8xx.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 14 | #include <linux/compiler.h> |
| 15 | |
| 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 18 | #if defined(CONFIG_8xx_CONS_SMC1) /* Console on SMC1 */ |
| 19 | #define SMC_INDEX 0 |
| 20 | #define PROFF_SMC PROFF_SMC1 |
| 21 | #define CPM_CR_CH_SMC CPM_CR_CH_SMC1 |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 22 | #define IOPINS 0xc0 |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 23 | |
| 24 | #elif defined(CONFIG_8xx_CONS_SMC2) /* Console on SMC2 */ |
| 25 | #define SMC_INDEX 1 |
| 26 | #define PROFF_SMC PROFF_SMC2 |
| 27 | #define CPM_CR_CH_SMC CPM_CR_CH_SMC2 |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 28 | #define IOPINS 0xc00 |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 29 | |
| 30 | #endif /* CONFIG_8xx_CONS_SMCx */ |
| 31 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 32 | struct serialbuffer { |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 33 | cbd_t rxbd; /* Rx BD */ |
| 34 | cbd_t txbd; /* Tx BD */ |
| 35 | uint rxindex; /* index for next character to read */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 36 | uchar rxbuf[CONFIG_SYS_SMC_RXBUFLEN];/* rx buffers */ |
| 37 | uchar txbuf; /* tx buffers */ |
| 38 | }; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 39 | |
Christophe Leroy | 12bbc0f | 2018-11-21 08:51:49 +0000 | [diff] [blame] | 40 | static void serial_setdivisor(cpm8xx_t __iomem *cp, int baudrate) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 41 | { |
Christophe Leroy | 12bbc0f | 2018-11-21 08:51:49 +0000 | [diff] [blame] | 42 | int divisor = (gd->cpu_clk + 8 * baudrate) / 16 / baudrate; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 43 | |
Christophe Leroy | 48f896d | 2017-07-06 10:33:17 +0200 | [diff] [blame] | 44 | if (divisor / 16 > 0x1000) { |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 45 | /* bad divisor, assume 50MHz clock and 9600 baud */ |
Christophe Leroy | 48f896d | 2017-07-06 10:33:17 +0200 | [diff] [blame] | 46 | divisor = (50 * 1000 * 1000 + 8 * 9600) / 16 / 9600; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 47 | } |
| 48 | |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 49 | divisor /= CONFIG_SYS_BRGCLK_PRESCALE; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 50 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 51 | if (divisor <= 0x1000) |
| 52 | out_be32(&cp->cp_brgc1, ((divisor - 1) << 1) | CPM_BRG_EN); |
| 53 | else |
| 54 | out_be32(&cp->cp_brgc1, ((divisor / 16 - 1) << 1) | CPM_BRG_EN | |
| 55 | CPM_BRG_DIV16); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | /* |
| 59 | * Minimal serial functions needed to use one of the SMC ports |
| 60 | * as serial console interface. |
| 61 | */ |
| 62 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 63 | static int serial_mpc8xx_setbrg(struct udevice *dev, int baudrate) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 64 | { |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 65 | immap_t __iomem *im = (immap_t __iomem *)CONFIG_SYS_IMMR; |
| 66 | cpm8xx_t __iomem *cp = &(im->im_cpm); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 67 | |
| 68 | /* Set up the baud rate generator. |
| 69 | * See 8xx_io/commproc.c for details. |
| 70 | * |
| 71 | * Wire BRG1 to SMCx |
| 72 | */ |
| 73 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 74 | out_be32(&cp->cp_simode, 0); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 75 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 76 | serial_setdivisor(cp, baudrate); |
| 77 | |
| 78 | return 0; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 79 | } |
| 80 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 81 | static int serial_mpc8xx_probe(struct udevice *dev) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 82 | { |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 83 | immap_t __iomem *im = (immap_t __iomem *)CONFIG_SYS_IMMR; |
| 84 | smc_t __iomem *sp; |
| 85 | smc_uart_t __iomem *up; |
Christophe Leroy | f3bc7fc | 2023-05-03 09:20:15 +0200 | [diff] [blame] | 86 | u16 smc_rpbase; |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 87 | cpm8xx_t __iomem *cp = &(im->im_cpm); |
| 88 | struct serialbuffer __iomem *rtx; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 89 | |
| 90 | /* initialize pointers to SMC */ |
| 91 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 92 | sp = cp->cp_smc + SMC_INDEX; |
Christophe Leroy | e6050cc | 2023-05-03 10:31:19 +0200 | [diff] [blame] | 93 | up = (smc_uart_t __iomem *)&cp->cp_dpmem[PROFF_SMC]; |
Christophe Leroy | f3bc7fc | 2023-05-03 09:20:15 +0200 | [diff] [blame] | 94 | |
| 95 | smc_rpbase = in_be16(&up->smc_rpbase); |
| 96 | if (smc_rpbase) |
| 97 | up = (smc_uart_t __iomem *)&cp->cp_dpmem[smc_rpbase]; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 98 | |
| 99 | /* Disable transmitter/receiver. */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 100 | clrbits_be16(&sp->smc_smcmr, SMCMR_REN | SMCMR_TEN); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 101 | |
| 102 | /* Enable SDMA. */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 103 | out_be32(&im->im_siu_conf.sc_sdcr, 1); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 104 | |
| 105 | /* clear error conditions */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 106 | out_8(&im->im_sdma.sdma_sdsr, CONFIG_SYS_SDSR); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 107 | |
| 108 | /* clear SDMA interrupt mask */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 109 | out_8(&im->im_sdma.sdma_sdmr, CONFIG_SYS_SDMR); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 110 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 111 | /* Use Port B for SMCx instead of other functions. */ |
| 112 | setbits_be32(&cp->cp_pbpar, IOPINS); |
| 113 | clrbits_be32(&cp->cp_pbdir, IOPINS); |
| 114 | clrbits_be16(&cp->cp_pbodr, IOPINS); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 115 | |
| 116 | /* Set the physical address of the host memory buffers in |
| 117 | * the buffer descriptors. |
| 118 | */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 119 | rtx = (struct serialbuffer __iomem *)&cp->cp_dpmem[CPM_SERIAL_BASE]; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 120 | /* Allocate space for two buffer descriptors in the DP ram. |
| 121 | * For now, this address seems OK, but it may have to |
| 122 | * change with newer versions of the firmware. |
| 123 | * damm: allocating space after the two buffers for rx/tx data |
| 124 | */ |
| 125 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 126 | out_be32(&rtx->rxbd.cbd_bufaddr, (__force uint)&rtx->rxbuf); |
| 127 | out_be16(&rtx->rxbd.cbd_sc, 0); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 128 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 129 | out_be32(&rtx->txbd.cbd_bufaddr, (__force uint)&rtx->txbuf); |
| 130 | out_be16(&rtx->txbd.cbd_sc, 0); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 131 | |
| 132 | /* Set up the uart parameters in the parameter ram. */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 133 | out_be16(&up->smc_rbase, CPM_SERIAL_BASE); |
| 134 | out_be16(&up->smc_tbase, CPM_SERIAL_BASE + sizeof(cbd_t)); |
| 135 | out_8(&up->smc_rfcr, SMC_EB); |
| 136 | out_8(&up->smc_tfcr, SMC_EB); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 137 | |
| 138 | /* Set UART mode, 8 bit, no parity, one stop. |
| 139 | * Enable receive and transmit. |
| 140 | */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 141 | out_be16(&sp->smc_smcmr, smcr_mk_clen(9) | SMCMR_SM_UART); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 142 | |
| 143 | /* Mask all interrupts and remove anything pending. |
| 144 | */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 145 | out_8(&sp->smc_smcm, 0); |
| 146 | out_8(&sp->smc_smce, 0xff); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 147 | |
| 148 | /* Set up the baud rate generator */ |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 149 | serial_mpc8xx_setbrg(dev, gd->baudrate); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 150 | |
| 151 | /* Make the first buffer the only buffer. */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 152 | setbits_be16(&rtx->txbd.cbd_sc, BD_SC_WRAP); |
| 153 | setbits_be16(&rtx->rxbd.cbd_sc, BD_SC_EMPTY | BD_SC_WRAP); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 154 | |
| 155 | /* single/multi character receive. */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 156 | out_be16(&up->smc_mrblr, CONFIG_SYS_SMC_RXBUFLEN); |
| 157 | out_be16(&up->smc_maxidl, CONFIG_SYS_MAXIDLE); |
| 158 | out_be32(&rtx->rxindex, 0); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 159 | |
Christophe Leroy | f3bc7fc | 2023-05-03 09:20:15 +0200 | [diff] [blame] | 160 | out_be32(&up->smc_rstate, 0); |
| 161 | out_be32(&up->smc_tstate, 0); |
| 162 | out_be16(&up->smc_rbptr, CPM_SERIAL_BASE); |
| 163 | out_be16(&up->smc_tbptr, CPM_SERIAL_BASE + sizeof(cbd_t)); |
| 164 | out_be16(&up->smc_brkcr, 1); |
| 165 | out_be16(&up->smc_brkec, 0); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 166 | |
| 167 | /* Enable transmitter/receiver. */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 168 | setbits_be16(&sp->smc_smcmr, SMCMR_REN | SMCMR_TEN); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 169 | |
Christophe Leroy | 48f896d | 2017-07-06 10:33:17 +0200 | [diff] [blame] | 170 | return 0; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 171 | } |
| 172 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 173 | static int serial_mpc8xx_putc(struct udevice *dev, const char c) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 174 | { |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 175 | immap_t __iomem *im = (immap_t __iomem *)CONFIG_SYS_IMMR; |
| 176 | cpm8xx_t __iomem *cpmp = &(im->im_cpm); |
| 177 | struct serialbuffer __iomem *rtx; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 178 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 179 | rtx = (struct serialbuffer __iomem *)&cpmp->cp_dpmem[CPM_SERIAL_BASE]; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 180 | |
Pali Rohár | 241f12d | 2022-12-11 00:31:21 +0100 | [diff] [blame] | 181 | if (in_be16(&rtx->txbd.cbd_sc) & BD_SC_READY) |
| 182 | return -EAGAIN; |
| 183 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 184 | out_8(&rtx->txbuf, c); |
| 185 | out_be16(&rtx->txbd.cbd_datlen, 1); |
| 186 | setbits_be16(&rtx->txbd.cbd_sc, BD_SC_READY); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 187 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 188 | return 0; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 191 | static int serial_mpc8xx_getc(struct udevice *dev) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 192 | { |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 193 | immap_t __iomem *im = (immap_t __iomem *)CONFIG_SYS_IMMR; |
| 194 | cpm8xx_t __iomem *cpmp = &(im->im_cpm); |
| 195 | struct serialbuffer __iomem *rtx; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 196 | unsigned char c; |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 197 | uint rxindex; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 198 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 199 | rtx = (struct serialbuffer __iomem *)&cpmp->cp_dpmem[CPM_SERIAL_BASE]; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 200 | |
Pali Rohár | 241f12d | 2022-12-11 00:31:21 +0100 | [diff] [blame] | 201 | if (in_be16(&rtx->rxbd.cbd_sc) & BD_SC_EMPTY) |
| 202 | return -EAGAIN; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 203 | |
| 204 | /* the characters are read one by one, |
| 205 | * use the rxindex to know the next char to deliver |
| 206 | */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 207 | rxindex = in_be32(&rtx->rxindex); |
| 208 | c = in_8(rtx->rxbuf + rxindex); |
| 209 | rxindex++; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 210 | |
| 211 | /* check if all char are readout, then make prepare for next receive */ |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 212 | if (rxindex >= in_be16(&rtx->rxbd.cbd_datlen)) { |
| 213 | rxindex = 0; |
| 214 | setbits_be16(&rtx->rxbd.cbd_sc, BD_SC_EMPTY); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 215 | } |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 216 | out_be32(&rtx->rxindex, rxindex); |
Christophe Leroy | 48f896d | 2017-07-06 10:33:17 +0200 | [diff] [blame] | 217 | return c; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 218 | } |
| 219 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 220 | static int serial_mpc8xx_pending(struct udevice *dev, bool input) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 221 | { |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 222 | immap_t __iomem *im = (immap_t __iomem *)CONFIG_SYS_IMMR; |
| 223 | cpm8xx_t __iomem *cpmp = &(im->im_cpm); |
| 224 | struct serialbuffer __iomem *rtx; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 225 | |
Christophe Leroy | e8800e1 | 2018-11-21 08:51:53 +0000 | [diff] [blame] | 226 | if (!input) |
| 227 | return 0; |
| 228 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 229 | rtx = (struct serialbuffer __iomem *)&cpmp->cp_dpmem[CPM_SERIAL_BASE]; |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 230 | |
Christophe Leroy | 394f9b3 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 231 | return !(in_be16(&rtx->rxbd.cbd_sc) & BD_SC_EMPTY); |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 232 | } |
| 233 | |
Christophe Leroy | 12bbc0f | 2018-11-21 08:51:49 +0000 | [diff] [blame] | 234 | static const struct dm_serial_ops serial_mpc8xx_ops = { |
| 235 | .putc = serial_mpc8xx_putc, |
| 236 | .pending = serial_mpc8xx_pending, |
| 237 | .getc = serial_mpc8xx_getc, |
| 238 | .setbrg = serial_mpc8xx_setbrg, |
| 239 | }; |
| 240 | |
| 241 | static const struct udevice_id serial_mpc8xx_ids[] = { |
| 242 | { .compatible = "fsl,pq1-smc" }, |
| 243 | { } |
| 244 | }; |
| 245 | |
| 246 | U_BOOT_DRIVER(serial_mpc8xx) = { |
| 247 | .name = "serial_mpc8xx", |
| 248 | .id = UCLASS_SERIAL, |
| 249 | .of_match = serial_mpc8xx_ids, |
| 250 | .probe = serial_mpc8xx_probe, |
| 251 | .ops = &serial_mpc8xx_ops, |
| 252 | .flags = DM_FLAG_PRE_RELOC, |
| 253 | }; |