Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 1 | /* |
| 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. |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <stdlib.h> |
| 18 | #include <string.h> |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 19 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 20 | #include "programmer.h" |
Thomas Heijligen | a065520 | 2021-12-14 16:36:05 +0100 | [diff] [blame] | 21 | #include "hwaccess_x86_io.h" |
Thomas Heijligen | d96c97c | 2021-11-02 21:03:00 +0100 | [diff] [blame] | 22 | #include "platform/pci.h" |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 23 | |
| 24 | #define BIOS_ROM_ADDR 0x90 |
| 25 | #define BIOS_ROM_DATA 0x94 |
| 26 | |
| 27 | #define REG_FLASH_ACCESS 0x58 |
| 28 | |
| 29 | #define PCI_VENDOR_ID_HPT 0x1103 |
| 30 | |
Stefan Tauner | 0ccec8f | 2014-06-01 23:49:03 +0000 | [diff] [blame] | 31 | static uint32_t io_base_addr = 0; |
| 32 | |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 33 | static const struct dev_entry ata_hpt[] = { |
Michael Karcher | 8448639 | 2010-02-24 00:04:40 +0000 | [diff] [blame] | 34 | {0x1103, 0x0004, NT, "Highpoint", "HPT366/368/370/370A/372/372N"}, |
| 35 | {0x1103, 0x0005, NT, "Highpoint", "HPT372A/372N"}, |
| 36 | {0x1103, 0x0006, NT, "Highpoint", "HPT302/302N"}, |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 37 | |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 38 | {0}, |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 41 | static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val, |
| 42 | chipaddr addr); |
| 43 | static uint8_t atahpt_chip_readb(const struct flashctx *flash, |
| 44 | const chipaddr addr); |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 45 | static const struct par_master par_master_atahpt = { |
Thomas Heijligen | 43040f2 | 2022-06-23 14:38:35 +0200 | [diff] [blame] | 46 | .chip_readb = atahpt_chip_readb, |
| 47 | .chip_readw = fallback_chip_readw, |
| 48 | .chip_readl = fallback_chip_readl, |
| 49 | .chip_readn = fallback_chip_readn, |
| 50 | .chip_writeb = atahpt_chip_writeb, |
| 51 | .chip_writew = fallback_chip_writew, |
| 52 | .chip_writel = fallback_chip_writel, |
| 53 | .chip_writen = fallback_chip_writen, |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 54 | }; |
| 55 | |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 56 | static int atahpt_init(void) |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 57 | { |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 58 | struct pci_dev *dev = NULL; |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 59 | uint32_t reg32; |
| 60 | |
Carl-Daniel Hailfinger | d6bb828 | 2012-07-21 17:27:08 +0000 | [diff] [blame] | 61 | if (rget_io_perms()) |
| 62 | return 1; |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 63 | |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 64 | dev = pcidev_init(ata_hpt, PCI_BASE_ADDRESS_4); |
| 65 | if (!dev) |
| 66 | return 1; |
| 67 | |
| 68 | io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_4); |
Niklas Söderlund | 89edf36 | 2013-08-23 23:29:23 +0000 | [diff] [blame] | 69 | if (!io_base_addr) |
| 70 | return 1; |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 71 | |
| 72 | /* Enable flash access. */ |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 73 | reg32 = pci_read_long(dev, REG_FLASH_ACCESS); |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 74 | reg32 |= (1 << 24); |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 75 | rpci_write_long(dev, REG_FLASH_ACCESS, reg32); |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 76 | |
Anastasia Klimchuk | c1f2a47 | 2021-08-27 15:47:46 +1000 | [diff] [blame] | 77 | return register_par_master(&par_master_atahpt, BUS_PARALLEL, NULL); |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 80 | static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val, |
| 81 | chipaddr addr) |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 82 | { |
| 83 | OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR); |
| 84 | OUTB(val, io_base_addr + BIOS_ROM_DATA); |
| 85 | } |
| 86 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 87 | static uint8_t atahpt_chip_readb(const struct flashctx *flash, |
| 88 | const chipaddr addr) |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 89 | { |
| 90 | OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR); |
| 91 | return INB(io_base_addr + BIOS_ROM_DATA); |
| 92 | } |
Andrew Morgan | a074383 | 2011-07-25 22:07:05 +0000 | [diff] [blame] | 93 | |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 94 | const struct programmer_entry programmer_atahpt = { |
| 95 | .name = "atahpt", |
| 96 | .type = PCI, |
| 97 | .devs.dev = ata_hpt, |
| 98 | .init = atahpt_init, |
| 99 | .map_flash_region = fallback_map, |
| 100 | .unmap_flash_region = fallback_unmap, |
| 101 | .delay = internal_delay, |
| 102 | }; |