blob: b4c34318d7d6b3e61b1f226d7ffde9555daf226b [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.
Andrew Morganc29c2e72010-06-07 22:37:54 +000015 */
16
Andrew Morganc29c2e72010-06-07 22:37:54 +000017#include <stdlib.h>
18#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000019#include "programmer.h"
Patrick Georgi32508eb2012-07-20 20:35:14 +000020#include "hwaccess.h"
Andrew Morganc29c2e72010-06-07 22:37:54 +000021
22#define PCI_VENDOR_ID_NATSEMI 0x100b
23
24#define BOOT_ROM_ADDR 0x50
25#define BOOT_ROM_DATA 0x54
26
Stefan Tauner0ccec8f2014-06-01 23:49:03 +000027static uint32_t io_base_addr = 0;
Thomas Heijligencc853d82021-05-04 15:32:17 +020028static const struct dev_entry nics_natsemi[] = {
Andrew Morganc29c2e72010-06-07 22:37:54 +000029 {0x100b, 0x0020, NT, "National Semiconductor", "DP83815/DP83816"},
30 {0x100b, 0x0022, NT, "National Semiconductor", "DP83820"},
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000031
32 {0},
Andrew Morganc29c2e72010-06-07 22:37:54 +000033};
34
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000035static void nicnatsemi_chip_writeb(const struct flashctx *flash, uint8_t val,
36 chipaddr addr);
37static uint8_t nicnatsemi_chip_readb(const struct flashctx *flash,
38 const chipaddr addr);
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +000039static const struct par_master par_master_nicnatsemi = {
Thomas Heijligen43040f22022-06-23 14:38:35 +020040 .chip_readb = nicnatsemi_chip_readb,
41 .chip_readw = fallback_chip_readw,
42 .chip_readl = fallback_chip_readl,
43 .chip_readn = fallback_chip_readn,
44 .chip_writeb = nicnatsemi_chip_writeb,
45 .chip_writew = fallback_chip_writew,
46 .chip_writel = fallback_chip_writel,
47 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000048};
49
Thomas Heijligencc853d82021-05-04 15:32:17 +020050static int nicnatsemi_init(void)
Andrew Morganc29c2e72010-06-07 22:37:54 +000051{
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000052 struct pci_dev *dev = NULL;
53
Carl-Daniel Hailfingerd6bb8282012-07-21 17:27:08 +000054 if (rget_io_perms())
55 return 1;
Andrew Morganc29c2e72010-06-07 22:37:54 +000056
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000057 dev = pcidev_init(nics_natsemi, PCI_BASE_ADDRESS_0);
58 if (!dev)
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000059 return 1;
Andrew Morganc29c2e72010-06-07 22:37:54 +000060
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000061 io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_0);
Niklas Söderlund89edf362013-08-23 23:29:23 +000062 if (!io_base_addr)
63 return 1;
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000064
Andrew Morgan74a828a2010-07-21 15:12:07 +000065 /* 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;
Anastasia Klimchukc1f2a472021-08-27 15:47:46 +100072 return register_par_master(&par_master_nicnatsemi, BUS_PARALLEL, NULL);
Andrew Morganc29c2e72010-06-07 22:37:54 +000073}
74
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000075static void nicnatsemi_chip_writeb(const struct flashctx *flash, uint8_t val,
76 chipaddr addr)
Andrew Morganc29c2e72010-06-07 22:37:54 +000077{
Andrew Morgan74a828a2010-07-21 15:12:07 +000078 OUTL((uint32_t)addr & 0x0001FFFF, io_base_addr + BOOT_ROM_ADDR);
Andrew Morganc29c2e72010-06-07 22:37:54 +000079 /*
80 * The datasheet requires 32 bit accesses to this register, but it seems
81 * that requirement might only apply if the register is memory mapped.
David Borg243ec632010-08-08 17:04:21 +000082 * Bits 8-31 of this register are apparently don't care, and if this
83 * register is I/O port mapped, 8 bit accesses to the lowest byte of the
Andrew Morganc29c2e72010-06-07 22:37:54 +000084 * register seem to work fine. Due to that, we ignore the advice in the
85 * data sheet.
86 */
87 OUTB(val, io_base_addr + BOOT_ROM_DATA);
88}
89
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000090static uint8_t nicnatsemi_chip_readb(const struct flashctx *flash,
91 const chipaddr addr)
Andrew Morganc29c2e72010-06-07 22:37:54 +000092{
Andrew Morgan74a828a2010-07-21 15:12:07 +000093 OUTL(((uint32_t)addr & 0x0001FFFF), io_base_addr + BOOT_ROM_ADDR);
Andrew Morganc29c2e72010-06-07 22:37:54 +000094 /*
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 Borg243ec632010-08-08 17:04:21 +000097 * 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 Morganc29c2e72010-06-07 22:37:54 +000099 * 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
Thomas Heijligencc853d82021-05-04 15:32:17 +0200105const struct programmer_entry programmer_nicnatsemi = {
106 .name = "nicnatsemi",
107 .type = PCI,
108 .devs.dev = nics_natsemi,
109 .init = nicnatsemi_init,
110 .map_flash_region = fallback_map,
111 .unmap_flash_region = fallback_unmap,
112 .delay = internal_delay,
113};