Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2010 Andrew Morgan <ziltro@ziltro.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
| 20 | |
| 21 | #if defined(__i386__) || defined(__x86_64__) |
| 22 | |
| 23 | #include <stdlib.h> |
| 24 | #include "flash.h" |
| 25 | |
| 26 | #define PCI_VENDOR_ID_NATSEMI 0x100b |
| 27 | |
| 28 | #define BOOT_ROM_ADDR 0x50 |
| 29 | #define BOOT_ROM_DATA 0x54 |
| 30 | |
| 31 | struct pcidev_status nics_natsemi[] = { |
| 32 | {0x100b, 0x0020, NT, "National Semiconductor", "DP83815/DP83816"}, |
| 33 | {0x100b, 0x0022, NT, "National Semiconductor", "DP83820"}, |
| 34 | {}, |
| 35 | }; |
| 36 | |
| 37 | int nicnatsemi_init(void) |
| 38 | { |
| 39 | get_io_perms(); |
| 40 | |
| 41 | io_base_addr = pcidev_init(PCI_VENDOR_ID_NATSEMI, PCI_BASE_ADDRESS_0, |
| 42 | nics_natsemi, programmer_param); |
| 43 | |
| 44 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 45 | |
| 46 | return 0; |
| 47 | } |
| 48 | |
| 49 | int nicnatsemi_shutdown(void) |
| 50 | { |
| 51 | free(programmer_param); |
| 52 | pci_cleanup(pacc); |
| 53 | release_io_perms(); |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | void nicnatsemi_chip_writeb(uint8_t val, chipaddr addr) |
| 58 | { |
| 59 | OUTL((uint32_t)addr & 0x0000FFFF, io_base_addr + BOOT_ROM_ADDR); |
| 60 | /* |
| 61 | * The datasheet requires 32 bit accesses to this register, but it seems |
| 62 | * that requirement might only apply if the register is memory mapped. |
| 63 | * Bit 8-31 of this register are apparently don't care, and if this |
| 64 | * register is I/O port mapped 8 bit accesses to the lowest byte of the |
| 65 | * register seem to work fine. Due to that, we ignore the advice in the |
| 66 | * data sheet. |
| 67 | */ |
| 68 | OUTB(val, io_base_addr + BOOT_ROM_DATA); |
| 69 | } |
| 70 | |
| 71 | uint8_t nicnatsemi_chip_readb(const chipaddr addr) |
| 72 | { |
| 73 | OUTL(((uint32_t)addr & 0x0000FFFF), io_base_addr + BOOT_ROM_ADDR); |
| 74 | /* |
| 75 | * The datasheet requires 32 bit accesses to this register, but it seems |
| 76 | * that requirement might only apply if the register is memory mapped. |
| 77 | * Bit 8-31 of this register are apparently don't care, and if this |
| 78 | * register is I/O port mapped 8 bit accesses to the lowest byte of the |
| 79 | * register seem to work fine. Due to that, we ignore the advice in the |
| 80 | * data sheet. |
| 81 | */ |
| 82 | return INB(io_base_addr + BOOT_ROM_DATA); |
| 83 | } |
| 84 | |
| 85 | #else |
| 86 | #error PCI port I/O access is not supported on this architecture yet. |
| 87 | #endif |