source: trunk/atahpt.c

Last change on this file was 1644, checked in by hailfinger, 5 months ago

Decouple BAR reading from pci device init, handle errors gracefully.

pcidev_init() now returns struct pci_device * instead of a BAR stored in
PCI config space. This allows for real error checking instead of having
exit(1) everywhere in pcidev.c.
Thanks to Niklas Söderlund for coming up with the original error
handling patch which was slightly modified and folded into this patch.
Move the declaration of struct pci_device in programmer.h before the
first user.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>
Acked-by: Stefan Tauner <stefan.tauner@…>

File size: 2.8 KB
Line 
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
21#if defined(__i386__) || defined(__x86_64__)
22
23#include <stdlib.h>
24#include <string.h>
25#include "flash.h"
26#include "programmer.h"
27#include "hwaccess.h"
28
29#define BIOS_ROM_ADDR           0x90
30#define BIOS_ROM_DATA           0x94
31
32#define REG_FLASH_ACCESS        0x58
33
34#define PCI_VENDOR_ID_HPT       0x1103
35
36const struct dev_entry ata_hpt[] = {
37        {0x1103, 0x0004, NT, "Highpoint", "HPT366/368/370/370A/372/372N"},
38        {0x1103, 0x0005, NT, "Highpoint", "HPT372A/372N"},
39        {0x1103, 0x0006, NT, "Highpoint", "HPT302/302N"},
40
41        {0},
42};
43
44static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val,
45                               chipaddr addr);
46static uint8_t atahpt_chip_readb(const struct flashctx *flash,
47                                 const chipaddr addr);
48static const struct par_programmer par_programmer_atahpt = {
49                .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
59int atahpt_init(void)
60{
61        struct pci_dev *dev = NULL;
62        uint32_t reg32;
63
64        if (rget_io_perms())
65                return 1;
66
67        dev = pcidev_init(ata_hpt, PCI_BASE_ADDRESS_4);
68        if (!dev)
69                return 1;
70
71        io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_4);
72
73        /* Enable flash access. */
74        reg32 = pci_read_long(dev, REG_FLASH_ACCESS);
75        reg32 |= (1 << 24);
76        rpci_write_long(dev, REG_FLASH_ACCESS, reg32);
77
78        register_par_programmer(&par_programmer_atahpt, BUS_PARALLEL);
79
80        return 0;
81}
82
83static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val,
84                               chipaddr addr)
85{
86        OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
87        OUTB(val, io_base_addr + BIOS_ROM_DATA);
88}
89
90static uint8_t atahpt_chip_readb(const struct flashctx *flash,
91                                 const chipaddr addr)
92{
93        OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
94        return INB(io_base_addr + BIOS_ROM_DATA);
95}
96
97#else
98#error PCI port I/O access is not supported on this architecture yet.
99#endif
Note: See TracBrowser for help on using the repository browser.