diff options
-rw-r--r-- | drivers/tty/mips_ejtag_fdc.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/drivers/tty/mips_ejtag_fdc.c b/drivers/tty/mips_ejtag_fdc.c index 04d9e23d1ee1..358323c83b4f 100644 --- a/drivers/tty/mips_ejtag_fdc.c +++ b/drivers/tty/mips_ejtag_fdc.c | |||
@@ -174,13 +174,13 @@ struct mips_ejtag_fdc_tty { | |||
174 | static inline void mips_ejtag_fdc_write(struct mips_ejtag_fdc_tty *priv, | 174 | static inline void mips_ejtag_fdc_write(struct mips_ejtag_fdc_tty *priv, |
175 | unsigned int offs, unsigned int data) | 175 | unsigned int offs, unsigned int data) |
176 | { | 176 | { |
177 | iowrite32(data, priv->reg + offs); | 177 | __raw_writel(data, priv->reg + offs); |
178 | } | 178 | } |
179 | 179 | ||
180 | static inline unsigned int mips_ejtag_fdc_read(struct mips_ejtag_fdc_tty *priv, | 180 | static inline unsigned int mips_ejtag_fdc_read(struct mips_ejtag_fdc_tty *priv, |
181 | unsigned int offs) | 181 | unsigned int offs) |
182 | { | 182 | { |
183 | return ioread32(priv->reg + offs); | 183 | return __raw_readl(priv->reg + offs); |
184 | } | 184 | } |
185 | 185 | ||
186 | /* Encoding of byte stream in FDC words */ | 186 | /* Encoding of byte stream in FDC words */ |
@@ -347,9 +347,9 @@ static void mips_ejtag_fdc_console_write(struct console *c, const char *s, | |||
347 | s += inc[word.bytes - 1]; | 347 | s += inc[word.bytes - 1]; |
348 | 348 | ||
349 | /* Busy wait until there's space in fifo */ | 349 | /* Busy wait until there's space in fifo */ |
350 | while (ioread32(regs + REG_FDSTAT) & REG_FDSTAT_TXF) | 350 | while (__raw_readl(regs + REG_FDSTAT) & REG_FDSTAT_TXF) |
351 | ; | 351 | ; |
352 | iowrite32(word.word, regs + REG_FDTX(c->index)); | 352 | __raw_writel(word.word, regs + REG_FDTX(c->index)); |
353 | } | 353 | } |
354 | out: | 354 | out: |
355 | local_irq_restore(flags); | 355 | local_irq_restore(flags); |
@@ -1227,7 +1227,7 @@ static int kgdbfdc_read_char(void) | |||
1227 | 1227 | ||
1228 | /* Read next word from KGDB channel */ | 1228 | /* Read next word from KGDB channel */ |
1229 | do { | 1229 | do { |
1230 | stat = ioread32(regs + REG_FDSTAT); | 1230 | stat = __raw_readl(regs + REG_FDSTAT); |
1231 | 1231 | ||
1232 | /* No data waiting? */ | 1232 | /* No data waiting? */ |
1233 | if (stat & REG_FDSTAT_RXE) | 1233 | if (stat & REG_FDSTAT_RXE) |
@@ -1236,7 +1236,7 @@ static int kgdbfdc_read_char(void) | |||
1236 | /* Read next word */ | 1236 | /* Read next word */ |
1237 | channel = (stat & REG_FDSTAT_RXCHAN) >> | 1237 | channel = (stat & REG_FDSTAT_RXCHAN) >> |
1238 | REG_FDSTAT_RXCHAN_SHIFT; | 1238 | REG_FDSTAT_RXCHAN_SHIFT; |
1239 | data = ioread32(regs + REG_FDRX); | 1239 | data = __raw_readl(regs + REG_FDRX); |
1240 | } while (channel != CONFIG_MIPS_EJTAG_FDC_KGDB_CHAN); | 1240 | } while (channel != CONFIG_MIPS_EJTAG_FDC_KGDB_CHAN); |
1241 | 1241 | ||
1242 | /* Decode into rbuf */ | 1242 | /* Decode into rbuf */ |
@@ -1266,9 +1266,10 @@ static void kgdbfdc_push_one(void) | |||
1266 | return; | 1266 | return; |
1267 | 1267 | ||
1268 | /* Busy wait until there's space in fifo */ | 1268 | /* Busy wait until there's space in fifo */ |
1269 | while (ioread32(regs + REG_FDSTAT) & REG_FDSTAT_TXF) | 1269 | while (__raw_readl(regs + REG_FDSTAT) & REG_FDSTAT_TXF) |
1270 | ; | 1270 | ; |
1271 | iowrite32(word.word, regs + REG_FDTX(CONFIG_MIPS_EJTAG_FDC_KGDB_CHAN)); | 1271 | __raw_writel(word.word, |
1272 | regs + REG_FDTX(CONFIG_MIPS_EJTAG_FDC_KGDB_CHAN)); | ||
1272 | } | 1273 | } |
1273 | 1274 | ||
1274 | /* flush the whole write buffer to the TX FIFO */ | 1275 | /* flush the whole write buffer to the TX FIFO */ |