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. |
| 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 | |
Andrew Morgan | a074383 | 2011-07-25 22:07:05 +0000 | [diff] [blame] | 21 | #if defined(__i386__) || defined(__x86_64__) |
| 22 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 23 | #include <stdlib.h> |
| 24 | #include <string.h> |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 25 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 26 | #include "programmer.h" |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 27 | |
| 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 | |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 35 | const struct pcidev_status ata_hpt[] = { |
Michael Karcher | 8448639 | 2010-02-24 00:04:40 +0000 | [diff] [blame] | 36 | {0x1103, 0x0004, NT, "Highpoint", "HPT366/368/370/370A/372/372N"}, |
| 37 | {0x1103, 0x0005, NT, "Highpoint", "HPT372A/372N"}, |
| 38 | {0x1103, 0x0006, NT, "Highpoint", "HPT302/302N"}, |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 39 | |
| 40 | {}, |
| 41 | }; |
| 42 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame^] | 43 | static const struct par_programmer par_programmer_atahpt = { |
| 44 | .chip_readb = atahpt_chip_readb, |
| 45 | .chip_readw = fallback_chip_readw, |
| 46 | .chip_readl = fallback_chip_readl, |
| 47 | .chip_readn = fallback_chip_readn, |
| 48 | .chip_writeb = atahpt_chip_writeb, |
| 49 | .chip_writew = fallback_chip_writew, |
| 50 | .chip_writel = fallback_chip_writel, |
| 51 | .chip_writen = fallback_chip_writen, |
| 52 | }; |
| 53 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 54 | static int atahpt_shutdown(void *data) |
| 55 | { |
| 56 | /* Flash access is disabled automatically by PCI restore. */ |
| 57 | pci_cleanup(pacc); |
| 58 | release_io_perms(); |
| 59 | return 0; |
| 60 | } |
| 61 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 62 | int atahpt_init(void) |
| 63 | { |
| 64 | uint32_t reg32; |
| 65 | |
| 66 | get_io_perms(); |
| 67 | |
Carl-Daniel Hailfinger | 40446ee | 2011-03-07 01:08:09 +0000 | [diff] [blame] | 68 | io_base_addr = pcidev_init(PCI_BASE_ADDRESS_4, ata_hpt); |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 69 | |
| 70 | /* Enable flash access. */ |
| 71 | reg32 = pci_read_long(pcidev_dev, REG_FLASH_ACCESS); |
| 72 | reg32 |= (1 << 24); |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 73 | rpci_write_long(pcidev_dev, REG_FLASH_ACCESS, reg32); |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 74 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 75 | if (register_shutdown(atahpt_shutdown, NULL)) |
| 76 | return 1; |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame^] | 77 | |
| 78 | register_par_programmer(&par_programmer_atahpt, BUS_PARALLEL); |
| 79 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | void atahpt_chip_writeb(uint8_t val, chipaddr addr) |
| 84 | { |
| 85 | OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR); |
| 86 | OUTB(val, io_base_addr + BIOS_ROM_DATA); |
| 87 | } |
| 88 | |
| 89 | uint8_t atahpt_chip_readb(const chipaddr addr) |
| 90 | { |
| 91 | OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR); |
| 92 | return INB(io_base_addr + BIOS_ROM_DATA); |
| 93 | } |
Andrew Morgan | a074383 | 2011-07-25 22:07:05 +0000 | [diff] [blame] | 94 | |
| 95 | #else |
| 96 | #error PCI port I/O access is not supported on this architecture yet. |
| 97 | #endif |