blob: 8a4562860eb52578bca906d7ec96e5216d6df8b3 [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>
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000018#include "programmer.h"
Thomas Heijligena0655202021-12-14 16:36:05 +010019#include "hwaccess_x86_io.h"
Thomas Heijligend96c97c2021-11-02 21:03:00 +010020#include "platform/pci.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
Nico Huberdd6e07a2026-02-21 17:55:26 +010035static void nicnatsemi_chip_writeb(const struct par_master *, uint8_t val, chipaddr);
36static uint8_t nicnatsemi_chip_readb(const struct par_master *, chipaddr);
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +000037static const struct par_master par_master_nicnatsemi = {
Thomas Heijligen43040f22022-06-23 14:38:35 +020038 .chip_readb = nicnatsemi_chip_readb,
39 .chip_readw = fallback_chip_readw,
40 .chip_readl = fallback_chip_readl,
41 .chip_readn = fallback_chip_readn,
42 .chip_writeb = nicnatsemi_chip_writeb,
43 .chip_writew = fallback_chip_writew,
44 .chip_writel = fallback_chip_writel,
45 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000046};
47
Nico Hubere3a26882023-01-11 21:45:51 +010048static int nicnatsemi_init(struct flashprog_programmer *const prog)
Andrew Morganc29c2e72010-06-07 22:37:54 +000049{
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000050 struct pci_dev *dev = NULL;
51
Carl-Daniel Hailfingerd6bb8282012-07-21 17:27:08 +000052 if (rget_io_perms())
53 return 1;
Andrew Morganc29c2e72010-06-07 22:37:54 +000054
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000055 dev = pcidev_init(nics_natsemi, PCI_BASE_ADDRESS_0);
56 if (!dev)
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000057 return 1;
Andrew Morganc29c2e72010-06-07 22:37:54 +000058
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000059 io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_0);
Niklas Söderlund89edf362013-08-23 23:29:23 +000060 if (!io_base_addr)
61 return 1;
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000062
Nico Huber89569d62023-01-12 23:31:40 +010063 /*
64 * The datasheet shows address lines MA0-MA16 in one place and MA0-MA15
Andrew Morgan74a828a2010-07-21 15:12:07 +000065 * in another. My NIC has MA16 connected to A16 on the boot ROM socket
Nico Huber89569d62023-01-12 23:31:40 +010066 * so I'm assuming it is accessible. If not then max_rom_decode wants
67 * to be 64KiB; and the mask in the read/write functions below wants
68 * to be 0x0000FFFF.
Andrew Morgan74a828a2010-07-21 15:12:07 +000069 */
Nico Huber47aa85c2026-02-21 14:57:20 +010070 return register_par_master(&par_master_nicnatsemi, BUS_PARALLEL, 0, 128*KiB, NULL);
Andrew Morganc29c2e72010-06-07 22:37:54 +000071}
72
Nico Huberdd6e07a2026-02-21 17:55:26 +010073static void nicnatsemi_chip_writeb(const struct par_master *par, uint8_t val, chipaddr addr)
Andrew Morganc29c2e72010-06-07 22:37:54 +000074{
Andrew Morgan74a828a2010-07-21 15:12:07 +000075 OUTL((uint32_t)addr & 0x0001FFFF, io_base_addr + BOOT_ROM_ADDR);
Andrew Morganc29c2e72010-06-07 22:37:54 +000076 /*
77 * The datasheet requires 32 bit accesses to this register, but it seems
78 * that requirement might only apply if the register is memory mapped.
David Borg243ec632010-08-08 17:04:21 +000079 * Bits 8-31 of this register are apparently don't care, and if this
80 * register is I/O port mapped, 8 bit accesses to the lowest byte of the
Andrew Morganc29c2e72010-06-07 22:37:54 +000081 * register seem to work fine. Due to that, we ignore the advice in the
82 * data sheet.
83 */
84 OUTB(val, io_base_addr + BOOT_ROM_DATA);
85}
86
Nico Huberdd6e07a2026-02-21 17:55:26 +010087static uint8_t nicnatsemi_chip_readb(const struct par_master *par, const chipaddr addr)
Andrew Morganc29c2e72010-06-07 22:37:54 +000088{
Andrew Morgan74a828a2010-07-21 15:12:07 +000089 OUTL(((uint32_t)addr & 0x0001FFFF), io_base_addr + BOOT_ROM_ADDR);
Andrew Morganc29c2e72010-06-07 22:37:54 +000090 /*
91 * The datasheet requires 32 bit accesses to this register, but it seems
92 * that requirement might only apply if the register is memory mapped.
David Borg243ec632010-08-08 17:04:21 +000093 * Bits 8-31 of this register are apparently don't care, and if this
94 * register is I/O port mapped, 8 bit accesses to the lowest byte of the
Andrew Morganc29c2e72010-06-07 22:37:54 +000095 * register seem to work fine. Due to that, we ignore the advice in the
96 * data sheet.
97 */
98 return INB(io_base_addr + BOOT_ROM_DATA);
99}
100
Thomas Heijligencc853d82021-05-04 15:32:17 +0200101const struct programmer_entry programmer_nicnatsemi = {
102 .name = "nicnatsemi",
103 .type = PCI,
104 .devs.dev = nics_natsemi,
105 .init = nicnatsemi_init,
Thomas Heijligencc853d82021-05-04 15:32:17 +0200106};