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