blob: d77c8f872ab63657f97288b1a81dbcc428f63ca6 [file] [log] [blame]
uwe7e627c82010-02-21 21:17:00 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.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
hailfingera49e9c12011-07-25 22:07:05 +000021#if defined(__i386__) || defined(__x86_64__)
22
uwe7e627c82010-02-21 21:17:00 +000023#include <stdlib.h>
24#include <string.h>
uwe7e627c82010-02-21 21:17:00 +000025#include "flash.h"
hailfinger428f6852010-07-27 22:41:39 +000026#include "programmer.h"
uwe7e627c82010-02-21 21:17:00 +000027
28#define BIOS_ROM_ADDR 0x90
29#define BIOS_ROM_DATA 0x94
30
31#define REG_FLASH_ACCESS 0x58
32
33#define PCI_VENDOR_ID_HPT 0x1103
34
Patrick Georgi8ae16572017-03-09 15:59:25 +010035const struct dev_entry ata_hpt[] = {
mkarcher6475d3f2010-02-24 00:04:40 +000036 {0x1103, 0x0004, NT, "Highpoint", "HPT366/368/370/370A/372/372N"},
37 {0x1103, 0x0005, NT, "Highpoint", "HPT372A/372N"},
38 {0x1103, 0x0006, NT, "Highpoint", "HPT302/302N"},
uwe7e627c82010-02-21 21:17:00 +000039
Patrick Georgi8ddfee92017-03-20 14:54:28 +010040 {0},
uwe7e627c82010-02-21 21:17:00 +000041};
42
Souvik Ghoshd75cd672016-06-17 14:21:39 -070043static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val,
44 chipaddr addr);
45static uint8_t atahpt_chip_readb(const struct flashctx *flash,
46 const chipaddr addr);
47
Patrick Georgi0a9533a2017-02-03 19:28:38 +010048static const struct par_master par_master_atahpt = {
hailfinger76bb7e92011-11-09 23:40:00 +000049 .chip_readb = atahpt_chip_readb,
50 .chip_readw = fallback_chip_readw,
51 .chip_readl = fallback_chip_readl,
52 .chip_readn = fallback_chip_readn,
53 .chip_writeb = atahpt_chip_writeb,
54 .chip_writew = fallback_chip_writew,
55 .chip_writel = fallback_chip_writel,
56 .chip_writen = fallback_chip_writen,
57};
58
David Hendricks93784b42016-08-09 17:00:38 -070059static int atahpt_shutdown(void *data)
dhendrix0ffc2eb2011-06-14 01:35:36 +000060{
61 /* Flash access is disabled automatically by PCI restore. */
62 pci_cleanup(pacc);
dhendrix0ffc2eb2011-06-14 01:35:36 +000063 return 0;
64}
65
David Hendricksac1d25c2016-08-09 17:00:58 -070066int atahpt_init(void)
uwe7e627c82010-02-21 21:17:00 +000067{
68 uint32_t reg32;
69
Patrick Georgi2a2d67f2017-03-09 10:15:39 +010070 if (rget_io_perms())
71 return 1;
uwe7e627c82010-02-21 21:17:00 +000072
hailfinger0d703d42011-03-07 01:08:09 +000073 io_base_addr = pcidev_init(PCI_BASE_ADDRESS_4, ata_hpt);
uwe7e627c82010-02-21 21:17:00 +000074
75 /* Enable flash access. */
76 reg32 = pci_read_long(pcidev_dev, REG_FLASH_ACCESS);
77 reg32 |= (1 << 24);
hailfingerf31cbdc2010-11-10 15:25:18 +000078 rpci_write_long(pcidev_dev, REG_FLASH_ACCESS, reg32);
uwe7e627c82010-02-21 21:17:00 +000079
dhendrix0ffc2eb2011-06-14 01:35:36 +000080 if (register_shutdown(atahpt_shutdown, NULL))
81 return 1;
hailfinger76bb7e92011-11-09 23:40:00 +000082
Patrick Georgi0a9533a2017-02-03 19:28:38 +010083 register_par_master(&par_master_atahpt, BUS_PARALLEL);
hailfinger76bb7e92011-11-09 23:40:00 +000084
uwe7e627c82010-02-21 21:17:00 +000085 return 0;
86}
87
Souvik Ghoshd75cd672016-06-17 14:21:39 -070088static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val,
89 chipaddr addr)
uwe7e627c82010-02-21 21:17:00 +000090{
91 OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
92 OUTB(val, io_base_addr + BIOS_ROM_DATA);
93}
94
Souvik Ghoshd75cd672016-06-17 14:21:39 -070095static uint8_t atahpt_chip_readb(const struct flashctx *flash,
96 const chipaddr addr)
uwe7e627c82010-02-21 21:17:00 +000097{
98 OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
99 return INB(io_base_addr + BIOS_ROM_DATA);
100}
hailfingera49e9c12011-07-25 22:07:05 +0000101
102#else
103#error PCI port I/O access is not supported on this architecture yet.
104#endif