blob: d1458869350289a2f30fede68ccbc62a36f7e931 [file] [log] [blame]
Joerg Fischer52a15492010-05-21 22:28:19 +00001/*
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 Hailfingercceafa22010-05-26 01:45:41 +000021#if defined(__i386__) || defined(__x86_64__)
22
Joerg Fischer52a15492010-05-21 22:28:19 +000023#include <stdlib.h>
24#include <string.h>
25#include <sys/types.h>
26#include "flash.h"
27
28#define PCI_VENDOR_ID_REALTEK 0x10ec
29#define PCI_VENDOR_ID_SMC1211 0x1113
30
31#define BIOS_ROM_ADDR 0xD4
32#define BIOS_ROM_DATA 0xD7
33
34struct pcidev_status nics_realtek[] = {
Uwe Hermann829ed842010-05-24 17:39:14 +000035 {0x10ec, 0x8139, OK, "Realtek", "RTL8139/8139C/8139C+"},
Joerg Fischer52a15492010-05-21 22:28:19 +000036 {},
37};
38
39struct pcidev_status nics_realteksmc1211[] = {
Uwe Hermann829ed842010-05-24 17:39:14 +000040 {0x1113, 0x1211, OK, "SMC2", "1211TX"}, /* RTL8139 clone */
41 {},
Joerg Fischer52a15492010-05-21 22:28:19 +000042};
43
Joerg Fischer52a15492010-05-21 22:28:19 +000044int nicrealtek_init(void)
45{
46 get_io_perms();
Uwe Hermann829ed842010-05-24 17:39:14 +000047
Joerg Fischer52a15492010-05-21 22:28:19 +000048 io_base_addr = pcidev_init(PCI_VENDOR_ID_REALTEK, PCI_BASE_ADDRESS_0,
Uwe Hermann829ed842010-05-24 17:39:14 +000049 nics_realtek, programmer_param);
50
Joerg Fischer52a15492010-05-21 22:28:19 +000051 buses_supported = CHIP_BUSTYPE_PARALLEL;
52
53 return 0;
54}
55
Joerg Fischer52a15492010-05-21 22:28:19 +000056int nicsmc1211_init(void)
57{
58 get_io_perms();
Uwe Hermann829ed842010-05-24 17:39:14 +000059
Joerg Fischer52a15492010-05-21 22:28:19 +000060 io_base_addr = pcidev_init(PCI_VENDOR_ID_SMC1211, PCI_BASE_ADDRESS_0,
Uwe Hermann829ed842010-05-24 17:39:14 +000061 nics_realteksmc1211, programmer_param);
62
Joerg Fischer52a15492010-05-21 22:28:19 +000063 buses_supported = CHIP_BUSTYPE_PARALLEL;
64
65 return 0;
66}
67
68int nicrealtek_shutdown(void)
69{
70 free(programmer_param);
71 pci_cleanup(pacc);
72 release_io_perms();
73 return 0;
74}
75
76void nicrealtek_chip_writeb(uint8_t val, chipaddr addr)
77{
Uwe Hermann829ed842010-05-24 17:39:14 +000078 OUTL(((uint32_t)addr & 0x01FFFF) | 0x0A0000 | (val << 24),
79 io_base_addr + BIOS_ROM_ADDR);
80 OUTL(((uint32_t)addr & 0x01FFFF) | 0x1E0000 | (val << 24),
81 io_base_addr + BIOS_ROM_ADDR);
Joerg Fischer52a15492010-05-21 22:28:19 +000082}
83
84uint8_t nicrealtek_chip_readb(const chipaddr addr)
Joerg Fischer52a15492010-05-21 22:28:19 +000085{
Uwe Hermann829ed842010-05-24 17:39:14 +000086 uint8_t val;
Joerg Fischer52a15492010-05-21 22:28:19 +000087
Uwe Hermann829ed842010-05-24 17:39:14 +000088 val = INB(io_base_addr + BIOS_ROM_DATA);
89 OUTL(((uint32_t)addr & 0x01FFFF) | 0x060000 | (val << 24),
90 io_base_addr + BIOS_ROM_ADDR);
91
92 val = INB(io_base_addr + BIOS_ROM_DATA);
93 OUTL(((uint32_t)addr & 0x01FFFF) | 0x1E0000 | (val << 24),
94 io_base_addr + BIOS_ROM_ADDR);
95
96 return val;
Joerg Fischer52a15492010-05-21 22:28:19 +000097}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +000098
99#else
100#error PCI port I/O access is not supported on this architecture yet.
101#endif