blob: 7cdd2fe95863ee84186c85e49af3d35aca45b103 [file] [log] [blame]
Andrew Morganc29c2e72010-06-07 22:37:54 +00001/*
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 Hailfinger5b997c32010-07-27 22:41:39 +000025#include "programmer.h"
Patrick Georgi32508eb2012-07-20 20:35:14 +000026#include "hwaccess.h"
Andrew Morganc29c2e72010-06-07 22:37:54 +000027
28#define PCI_VENDOR_ID_NATSEMI 0x100b
29
30#define BOOT_ROM_ADDR 0x50
31#define BOOT_ROM_DATA 0x54
32
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000033const struct pcidev_status nics_natsemi[] = {
Andrew Morganc29c2e72010-06-07 22:37:54 +000034 {0x100b, 0x0020, NT, "National Semiconductor", "DP83815/DP83816"},
35 {0x100b, 0x0022, NT, "National Semiconductor", "DP83820"},
36 {},
37};
38
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000039static void nicnatsemi_chip_writeb(const struct flashctx *flash, uint8_t val,
40 chipaddr addr);
41static uint8_t nicnatsemi_chip_readb(const struct flashctx *flash,
42 const chipaddr addr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000043static const struct par_programmer par_programmer_nicnatsemi = {
44 .chip_readb = nicnatsemi_chip_readb,
45 .chip_readw = fallback_chip_readw,
46 .chip_readl = fallback_chip_readl,
47 .chip_readn = fallback_chip_readn,
48 .chip_writeb = nicnatsemi_chip_writeb,
49 .chip_writew = fallback_chip_writew,
50 .chip_writel = fallback_chip_writel,
51 .chip_writen = fallback_chip_writen,
52};
53
David Hendricks8bb20212011-06-14 01:35:36 +000054static int nicnatsemi_shutdown(void *data)
55{
56 pci_cleanup(pacc);
David Hendricks8bb20212011-06-14 01:35:36 +000057 return 0;
58}
59
Andrew Morganc29c2e72010-06-07 22:37:54 +000060int nicnatsemi_init(void)
61{
Carl-Daniel Hailfingerd6bb8282012-07-21 17:27:08 +000062 if (rget_io_perms())
63 return 1;
Andrew Morganc29c2e72010-06-07 22:37:54 +000064
Carl-Daniel Hailfinger40446ee2011-03-07 01:08:09 +000065 io_base_addr = pcidev_init(PCI_BASE_ADDRESS_0, nics_natsemi);
Andrew Morganc29c2e72010-06-07 22:37:54 +000066
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000067 if (register_shutdown(nicnatsemi_shutdown, NULL))
68 return 1;
Andrew Morganc29c2e72010-06-07 22:37:54 +000069
Andrew Morgan74a828a2010-07-21 15:12:07 +000070 /* The datasheet shows address lines MA0-MA16 in one place and MA0-MA15
71 * in another. My NIC has MA16 connected to A16 on the boot ROM socket
72 * so I'm assuming it is accessible. If not then next line wants to be
73 * max_rom_decode.parallel = 65536; and the mask in the read/write
74 * functions below wants to be 0x0000FFFF.
75 */
76 max_rom_decode.parallel = 131072;
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000077 register_par_programmer(&par_programmer_nicnatsemi, BUS_PARALLEL);
Andrew Morgan74a828a2010-07-21 15:12:07 +000078
Andrew Morganc29c2e72010-06-07 22:37:54 +000079 return 0;
80}
81
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000082static void nicnatsemi_chip_writeb(const struct flashctx *flash, uint8_t val,
83 chipaddr addr)
Andrew Morganc29c2e72010-06-07 22:37:54 +000084{
Andrew Morgan74a828a2010-07-21 15:12:07 +000085 OUTL((uint32_t)addr & 0x0001FFFF, io_base_addr + BOOT_ROM_ADDR);
Andrew Morganc29c2e72010-06-07 22:37:54 +000086 /*
87 * The datasheet requires 32 bit accesses to this register, but it seems
88 * that requirement might only apply if the register is memory mapped.
David Borg243ec632010-08-08 17:04:21 +000089 * Bits 8-31 of this register are apparently don't care, and if this
90 * register is I/O port mapped, 8 bit accesses to the lowest byte of the
Andrew Morganc29c2e72010-06-07 22:37:54 +000091 * register seem to work fine. Due to that, we ignore the advice in the
92 * data sheet.
93 */
94 OUTB(val, io_base_addr + BOOT_ROM_DATA);
95}
96
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000097static uint8_t nicnatsemi_chip_readb(const struct flashctx *flash,
98 const chipaddr addr)
Andrew Morganc29c2e72010-06-07 22:37:54 +000099{
Andrew Morgan74a828a2010-07-21 15:12:07 +0000100 OUTL(((uint32_t)addr & 0x0001FFFF), io_base_addr + BOOT_ROM_ADDR);
Andrew Morganc29c2e72010-06-07 22:37:54 +0000101 /*
102 * The datasheet requires 32 bit accesses to this register, but it seems
103 * that requirement might only apply if the register is memory mapped.
David Borg243ec632010-08-08 17:04:21 +0000104 * Bits 8-31 of this register are apparently don't care, and if this
105 * register is I/O port mapped, 8 bit accesses to the lowest byte of the
Andrew Morganc29c2e72010-06-07 22:37:54 +0000106 * register seem to work fine. Due to that, we ignore the advice in the
107 * data sheet.
108 */
109 return INB(io_base_addr + BOOT_ROM_DATA);
110}
111
112#else
113#error PCI port I/O access is not supported on this architecture yet.
114#endif