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 | |
| 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
| 23 | #include <sys/types.h> |
| 24 | #include "flash.h" |
| 25 | |
| 26 | #define PCI_VENDOR_ID_REALTEK 0x10ec |
| 27 | #define PCI_VENDOR_ID_SMC1211 0x1113 |
| 28 | |
| 29 | #define BIOS_ROM_ADDR 0xD4 |
| 30 | #define BIOS_ROM_DATA 0xD7 |
| 31 | |
| 32 | struct pcidev_status nics_realtek[] = { |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 33 | {0x10ec, 0x8139, OK, "Realtek", "RTL8139/8139C/8139C+"}, |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 34 | {}, |
| 35 | }; |
| 36 | |
| 37 | struct pcidev_status nics_realteksmc1211[] = { |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 38 | {0x1113, 0x1211, OK, "SMC2", "1211TX"}, /* RTL8139 clone */ |
| 39 | {}, |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 40 | }; |
| 41 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 42 | int nicrealtek_init(void) |
| 43 | { |
| 44 | get_io_perms(); |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 45 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 46 | io_base_addr = pcidev_init(PCI_VENDOR_ID_REALTEK, PCI_BASE_ADDRESS_0, |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 47 | nics_realtek, programmer_param); |
| 48 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 49 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 50 | |
| 51 | return 0; |
| 52 | } |
| 53 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 54 | int nicsmc1211_init(void) |
| 55 | { |
| 56 | get_io_perms(); |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 57 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 58 | io_base_addr = pcidev_init(PCI_VENDOR_ID_SMC1211, PCI_BASE_ADDRESS_0, |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 59 | nics_realteksmc1211, programmer_param); |
| 60 | |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 61 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 62 | |
| 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | int nicrealtek_shutdown(void) |
| 67 | { |
| 68 | free(programmer_param); |
| 69 | pci_cleanup(pacc); |
| 70 | release_io_perms(); |
| 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | void nicrealtek_chip_writeb(uint8_t val, chipaddr addr) |
| 75 | { |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 76 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x0A0000 | (val << 24), |
| 77 | io_base_addr + BIOS_ROM_ADDR); |
| 78 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x1E0000 | (val << 24), |
| 79 | io_base_addr + BIOS_ROM_ADDR); |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | uint8_t nicrealtek_chip_readb(const chipaddr addr) |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 83 | { |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 84 | uint8_t val; |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 85 | |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 86 | val = INB(io_base_addr + BIOS_ROM_DATA); |
| 87 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x060000 | (val << 24), |
| 88 | io_base_addr + BIOS_ROM_ADDR); |
| 89 | |
| 90 | val = INB(io_base_addr + BIOS_ROM_DATA); |
| 91 | OUTL(((uint32_t)addr & 0x01FFFF) | 0x1E0000 | (val << 24), |
| 92 | io_base_addr + BIOS_ROM_ADDR); |
| 93 | |
| 94 | return val; |
Joerg Fischer | 52a1549 | 2010-05-21 22:28:19 +0000 | [diff] [blame] | 95 | } |