Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Joerg Fischer <turboj@gmx.de> |
| 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 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 21 | #if defined(__i386__) || defined(__x86_64__) |
| 22 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 23 | #include <stdlib.h> |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 24 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 25 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 26 | #include "hwaccess.h" |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 27 | |
| 28 | #define PCI_VENDOR_ID_REALTEK 0x10ec |
| 29 | #define PCI_VENDOR_ID_SMC1211 0x1113 |
| 30 | |
Stefan Tauner | 0ccec8f | 2014-06-01 23:49:03 +0000 | [diff] [blame] | 31 | static uint32_t io_base_addr = 0; |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 32 | static int bios_rom_addr, bios_rom_data; |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 33 | |
Stefan Tauner | 4b24a2d | 2012-12-27 18:40:36 +0000 | [diff] [blame] | 34 | const struct dev_entry nics_realtek[] = { |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 35 | {0x10ec, 0x8139, OK, "Realtek", "RTL8139/8139C/8139C+"}, |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 36 | {0x10ec, 0x8169, NT, "Realtek", "RTL8169"}, |
| 37 | {0x1113, 0x1211, OK, "SMC", "1211TX"}, /* RTL8139 clone */ |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 38 | |
| 39 | {0}, |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 40 | }; |
| 41 | |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 42 | static void nicrealtek_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr); |
| 43 | static uint8_t nicrealtek_chip_readb(const struct flashctx *flash, const chipaddr addr); |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 44 | static const struct par_programmer par_programmer_nicrealtek = { |
| 45 | .chip_readb = nicrealtek_chip_readb, |
| 46 | .chip_readw = fallback_chip_readw, |
| 47 | .chip_readl = fallback_chip_readl, |
| 48 | .chip_readn = fallback_chip_readn, |
| 49 | .chip_writeb = nicrealtek_chip_writeb, |
| 50 | .chip_writew = fallback_chip_writew, |
| 51 | .chip_writel = fallback_chip_writel, |
| 52 | .chip_writen = fallback_chip_writen, |
| 53 | }; |
| 54 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 55 | static int nicrealtek_shutdown(void *data) |
| 56 | { |
| 57 | /* FIXME: We forgot to disable software access again. */ |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 61 | int nicrealtek_init(void) |
| 62 | { |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 63 | struct pci_dev *dev = NULL; |
| 64 | |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 65 | if (rget_io_perms()) |
| 66 | return 1; |
| 67 | |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 68 | dev = pcidev_init(nics_realtek, PCI_BASE_ADDRESS_0); |
| 69 | if (!dev) |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 70 | return 1; |
| 71 | |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 72 | io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_0); |
Niklas Söderlund | 89edf36 | 2013-08-23 23:29:23 +0000 | [diff] [blame] | 73 | if (!io_base_addr) |
| 74 | return 1; |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 75 | |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 76 | /* Beware, this ignores the vendor ID! */ |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 77 | switch (dev->device_id) { |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 78 | case 0x8139: /* RTL8139 */ |
| 79 | case 0x1211: /* SMC 1211TX */ |
| 80 | default: |
| 81 | bios_rom_addr = 0xD4; |
| 82 | bios_rom_data = 0xD7; |
| 83 | break; |
| 84 | case 0x8169: /* RTL8169 */ |
| 85 | bios_rom_addr = 0x30; |
| 86 | bios_rom_data = 0x33; |
| 87 | break; |
| 88 | } |
| 89 | |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 90 | if (register_shutdown(nicrealtek_shutdown, NULL)) |
| 91 | return 1; |
| 92 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 93 | register_par_programmer(&par_programmer_nicrealtek, BUS_PARALLEL); |
| 94 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 95 | return 0; |
| 96 | } |
| 97 | |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 98 | static void nicrealtek_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr) |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 99 | { |
Carl-Daniel Hailfinger | 2eda391 | 2010-06-14 14:18:37 +0000 | [diff] [blame] | 100 | /* Output addr and data, set WE to 0, set OE to 1, set CS to 0, |
| 101 | * enable software access. |
| 102 | */ |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 103 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x0A0000 | (val << 24), |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 104 | io_base_addr + bios_rom_addr); |
Carl-Daniel Hailfinger | 2eda391 | 2010-06-14 14:18:37 +0000 | [diff] [blame] | 105 | /* Output addr and data, set WE to 1, set OE to 1, set CS to 1, |
| 106 | * enable software access. |
| 107 | */ |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 108 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x1E0000 | (val << 24), |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 109 | io_base_addr + bios_rom_addr); |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 112 | static uint8_t nicrealtek_chip_readb(const struct flashctx *flash, const chipaddr addr) |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 113 | { |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 114 | uint8_t val; |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 115 | |
Carl-Daniel Hailfinger | 2eda391 | 2010-06-14 14:18:37 +0000 | [diff] [blame] | 116 | /* FIXME: Can we skip reading the old data and simply use 0? */ |
| 117 | /* Read old data. */ |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 118 | val = INB(io_base_addr + bios_rom_data); |
Carl-Daniel Hailfinger | 2eda391 | 2010-06-14 14:18:37 +0000 | [diff] [blame] | 119 | /* Output new addr and old data, set WE to 1, set OE to 0, set CS to 0, |
| 120 | * enable software access. |
| 121 | */ |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 122 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x060000 | (val << 24), |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 123 | io_base_addr + bios_rom_addr); |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 124 | |
Carl-Daniel Hailfinger | 2eda391 | 2010-06-14 14:18:37 +0000 | [diff] [blame] | 125 | /* Read new data. */ |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 126 | val = INB(io_base_addr + bios_rom_data); |
Carl-Daniel Hailfinger | 2eda391 | 2010-06-14 14:18:37 +0000 | [diff] [blame] | 127 | /* Output addr and new data, set WE to 1, set OE to 1, set CS to 1, |
| 128 | * enable software access. |
| 129 | */ |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 130 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x1E0000 | (val << 24), |
Sergey Lichack | 98f4710 | 2012-08-27 01:24:15 +0000 | [diff] [blame] | 131 | io_base_addr + bios_rom_addr); |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 132 | |
| 133 | return val; |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 134 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 135 | |
| 136 | #else |
| 137 | #error PCI port I/O access is not supported on this architecture yet. |
| 138 | #endif |