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" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 25 | #include "programmer.h" |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 26 | |
| 27 | #define PCI_VENDOR_ID_NATSEMI 0x100b |
| 28 | |
| 29 | #define BOOT_ROM_ADDR 0x50 |
| 30 | #define BOOT_ROM_DATA 0x54 |
| 31 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 32 | const struct pcidev_status nics_natsemi[] = { |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 33 | {0x100b, 0x0020, NT, "National Semiconductor", "DP83815/DP83816"}, |
| 34 | {0x100b, 0x0022, NT, "National Semiconductor", "DP83820"}, |
| 35 | {}, |
| 36 | }; |
| 37 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 38 | static const struct par_programmer par_programmer_nicnatsemi = { |
| 39 | .chip_readb = nicnatsemi_chip_readb, |
| 40 | .chip_readw = fallback_chip_readw, |
| 41 | .chip_readl = fallback_chip_readl, |
| 42 | .chip_readn = fallback_chip_readn, |
| 43 | .chip_writeb = nicnatsemi_chip_writeb, |
| 44 | .chip_writew = fallback_chip_writew, |
| 45 | .chip_writel = fallback_chip_writel, |
| 46 | .chip_writen = fallback_chip_writen, |
| 47 | }; |
| 48 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 49 | static int nicnatsemi_shutdown(void *data) |
| 50 | { |
| 51 | pci_cleanup(pacc); |
| 52 | release_io_perms(); |
| 53 | return 0; |
| 54 | } |
| 55 | |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 56 | int nicnatsemi_init(void) |
| 57 | { |
| 58 | get_io_perms(); |
| 59 | |
Carl-Daniel Hailfinger | 40446ee | 2011-03-07 01:08:09 +0000 | [diff] [blame] | 60 | io_base_addr = pcidev_init(PCI_BASE_ADDRESS_0, nics_natsemi); |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 61 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 62 | if (register_shutdown(nicnatsemi_shutdown, NULL)) |
| 63 | return 1; |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 64 | |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 65 | /* The datasheet shows address lines MA0-MA16 in one place and MA0-MA15 |
| 66 | * in another. My NIC has MA16 connected to A16 on the boot ROM socket |
| 67 | * so I'm assuming it is accessible. If not then next line wants to be |
| 68 | * max_rom_decode.parallel = 65536; and the mask in the read/write |
| 69 | * functions below wants to be 0x0000FFFF. |
| 70 | */ |
| 71 | max_rom_decode.parallel = 131072; |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 72 | register_par_programmer(&par_programmer_nicnatsemi, BUS_PARALLEL); |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 73 | |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | void nicnatsemi_chip_writeb(uint8_t val, chipaddr addr) |
| 78 | { |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 79 | OUTL((uint32_t)addr & 0x0001FFFF, io_base_addr + BOOT_ROM_ADDR); |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 80 | /* |
| 81 | * The datasheet requires 32 bit accesses to this register, but it seems |
| 82 | * that requirement might only apply if the register is memory mapped. |
David Borg | 243ec63 | 2010-08-08 17:04:21 +0000 | [diff] [blame] | 83 | * Bits 8-31 of this register are apparently don't care, and if this |
| 84 | * register is I/O port mapped, 8 bit accesses to the lowest byte of the |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 85 | * register seem to work fine. Due to that, we ignore the advice in the |
| 86 | * data sheet. |
| 87 | */ |
| 88 | OUTB(val, io_base_addr + BOOT_ROM_DATA); |
| 89 | } |
| 90 | |
| 91 | uint8_t nicnatsemi_chip_readb(const chipaddr addr) |
| 92 | { |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 93 | OUTL(((uint32_t)addr & 0x0001FFFF), io_base_addr + BOOT_ROM_ADDR); |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 94 | /* |
| 95 | * The datasheet requires 32 bit accesses to this register, but it seems |
| 96 | * that requirement might only apply if the register is memory mapped. |
David Borg | 243ec63 | 2010-08-08 17:04:21 +0000 | [diff] [blame] | 97 | * Bits 8-31 of this register are apparently don't care, and if this |
| 98 | * register is I/O port mapped, 8 bit accesses to the lowest byte of the |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 99 | * register seem to work fine. Due to that, we ignore the advice in the |
| 100 | * data sheet. |
| 101 | */ |
| 102 | return INB(io_base_addr + BOOT_ROM_DATA); |
| 103 | } |
| 104 | |
| 105 | #else |
| 106 | #error PCI port I/O access is not supported on this architecture yet. |
| 107 | #endif |