Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/sh/boards/renesas/edosk7705/io.c |
| 3 | * |
| 4 | * Copyright (C) 2001 Ian da Silva, Jeremy Siegel |
| 5 | * Based largely on io_se.c. |
| 6 | * |
| 7 | * I/O routines for Hitachi EDOSK7705 board. |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/types.h> |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 13 | #include <linux/io.h> |
Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 14 | #include <mach/edosk7705.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/addrspace.h> |
| 16 | |
| 17 | #define SMC_IOADDR 0xA2000000 |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | /* Map the Ethernet addresses as if it is at 0x300 - 0x320 */ |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 20 | static unsigned long sh_edosk7705_isa_port2addr(unsigned long port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | { |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 22 | /* |
| 23 | * SMC91C96 registers are 4 byte aligned rather than the |
| 24 | * usual 2 byte! |
| 25 | */ |
| 26 | if (port >= 0x300 && port < 0x320) |
| 27 | return SMC_IOADDR + ((port - 0x300) * 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 29 | maybebadio(port); |
| 30 | return port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | /* Trying to read / write bytes on odd-byte boundaries to the Ethernet |
| 34 | * registers causes problems. So we bit-shift the value and read / write |
| 35 | * in 2 byte chunks. Setting the low byte to 0 does not cause problems |
| 36 | * now as odd byte writes are only made on the bit mask / interrupt |
| 37 | * register. This may not be the case in future Mar-2003 SJD |
| 38 | */ |
| 39 | unsigned char sh_edosk7705_inb(unsigned long port) |
| 40 | { |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 41 | if (port >= 0x300 && port < 0x320 && port & 0x01) |
| 42 | return __raw_readw(port - 1) >> 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 44 | return __raw_readb(sh_edosk7705_isa_port2addr(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | void sh_edosk7705_outb(unsigned char value, unsigned long port) |
| 48 | { |
| 49 | if (port >= 0x300 && port < 0x320 && port & 0x01) { |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 50 | __raw_writew(((unsigned short)value << 8), port - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | return; |
| 52 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 54 | __raw_writeb(value, sh_edosk7705_isa_port2addr(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | void sh_edosk7705_insb(unsigned long port, void *addr, unsigned long count) |
| 58 | { |
| 59 | unsigned char *p = addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | while (count--) |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 62 | *p++ = sh_edosk7705_inb(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | void sh_edosk7705_outsb(unsigned long port, const void *addr, unsigned long count) |
| 66 | { |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 67 | unsigned char *p = (unsigned char *)addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Paul Mundt | 866ef8f | 2008-12-17 13:57:15 +0900 | [diff] [blame^] | 69 | while (count--) |
| 70 | sh_edosk7705_outb(*p++, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |