blob: dae022250771d8d361144c4e2dce9e6c9113f722 [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.
uwe7e627c82010-02-21 21:17:00 +000015 */
16
hailfingera49e9c12011-07-25 22:07:05 +000017#if defined(__i386__) || defined(__x86_64__)
18
uwe7e627c82010-02-21 21:17:00 +000019#include <stdlib.h>
20#include <string.h>
uwe7e627c82010-02-21 21:17:00 +000021#include "flash.h"
hailfinger428f6852010-07-27 22:41:39 +000022#include "programmer.h"
Patrick Georgib6e26e62017-04-11 20:24:22 +020023#include "hwaccess.h"
uwe7e627c82010-02-21 21:17:00 +000024
25#define BIOS_ROM_ADDR 0x90
26#define BIOS_ROM_DATA 0x94
27
28#define REG_FLASH_ACCESS 0x58
29
30#define PCI_VENDOR_ID_HPT 0x1103
31
Patrick Georgi7c30fa92017-03-28 22:47:12 +020032static uint32_t io_base_addr = 0;
33
Patrick Georgi8ae16572017-03-09 15:59:25 +010034const struct dev_entry ata_hpt[] = {
mkarcher6475d3f2010-02-24 00:04:40 +000035 {0x1103, 0x0004, NT, "Highpoint", "HPT366/368/370/370A/372/372N"},
36 {0x1103, 0x0005, NT, "Highpoint", "HPT372A/372N"},
37 {0x1103, 0x0006, NT, "Highpoint", "HPT302/302N"},
uwe7e627c82010-02-21 21:17:00 +000038
Patrick Georgi8ddfee92017-03-20 14:54:28 +010039 {0},
uwe7e627c82010-02-21 21:17:00 +000040};
41
Souvik Ghoshd75cd672016-06-17 14:21:39 -070042static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val,
43 chipaddr addr);
44static uint8_t atahpt_chip_readb(const struct flashctx *flash,
45 const chipaddr addr);
Patrick Georgi0a9533a2017-02-03 19:28:38 +010046static const struct par_master par_master_atahpt = {
hailfinger76bb7e92011-11-09 23:40:00 +000047 .chip_readb = atahpt_chip_readb,
48 .chip_readw = fallback_chip_readw,
49 .chip_readl = fallback_chip_readl,
50 .chip_readn = fallback_chip_readn,
51 .chip_writeb = atahpt_chip_writeb,
52 .chip_writew = fallback_chip_writew,
53 .chip_writel = fallback_chip_writel,
54 .chip_writen = fallback_chip_writen,
55};
56
David Hendricksac1d25c2016-08-09 17:00:58 -070057int atahpt_init(void)
uwe7e627c82010-02-21 21:17:00 +000058{
Patrick Georgi7c30fa92017-03-28 22:47:12 +020059 struct pci_dev *dev = NULL;
uwe7e627c82010-02-21 21:17:00 +000060 uint32_t reg32;
61
Patrick Georgi2a2d67f2017-03-09 10:15:39 +010062 if (rget_io_perms())
63 return 1;
uwe7e627c82010-02-21 21:17:00 +000064
Patrick Georgi7c30fa92017-03-28 22:47:12 +020065 dev = pcidev_init(ata_hpt, PCI_BASE_ADDRESS_4);
66 if (!dev)
67 return 1;
68
69 io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_4);
70 if (!io_base_addr)
71 return 1;
uwe7e627c82010-02-21 21:17:00 +000072
73 /* Enable flash access. */
Patrick Georgid490a172017-03-28 23:03:47 +020074 reg32 = pci_read_long(dev, REG_FLASH_ACCESS);
uwe7e627c82010-02-21 21:17:00 +000075 reg32 |= (1 << 24);
Patrick Georgid490a172017-03-28 23:03:47 +020076 rpci_write_long(dev, REG_FLASH_ACCESS, reg32);
uwe7e627c82010-02-21 21:17:00 +000077
Patrick Georgi0a9533a2017-02-03 19:28:38 +010078 register_par_master(&par_master_atahpt, BUS_PARALLEL);
hailfinger76bb7e92011-11-09 23:40:00 +000079
uwe7e627c82010-02-21 21:17:00 +000080 return 0;
81}
82
Souvik Ghoshd75cd672016-06-17 14:21:39 -070083static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val,
84 chipaddr addr)
uwe7e627c82010-02-21 21:17:00 +000085{
86 OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
87 OUTB(val, io_base_addr + BIOS_ROM_DATA);
88}
89
Souvik Ghoshd75cd672016-06-17 14:21:39 -070090static uint8_t atahpt_chip_readb(const struct flashctx *flash,
91 const chipaddr addr)
uwe7e627c82010-02-21 21:17:00 +000092{
93 OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
94 return INB(io_base_addr + BIOS_ROM_DATA);
95}
hailfingera49e9c12011-07-25 22:07:05 +000096
97#else
98#error PCI port I/O access is not supported on this architecture yet.
99#endif