blob: e0de29060b55e886f63be270cb8a643576111f68 [file] [log] [blame]
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2015 Joseph C. Lehner <joseph.c.lehner@gmail.com>
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 <string.h>
24#include <stdlib.h>
25#include "flash.h"
26#include "programmer.h"
27#include "hwaccess.h"
28
29#define MAX_ROM_DECODE (32 * 1024)
30#define ADDR_MASK (MAX_ROM_DECODE - 1)
31
32/*
33 * In the absence of any public docs on the PDC2026x family, this programmer was created through a mix of
34 * reverse-engineering and trial and error.
35 *
36 * The only device tested is an Ultra100 controller, but the logic for programming the other 2026x controllers
37 * is the same, so it should, in theory, work for those as well.
38 *
39 * While the tested Ultra100 controller used a 128 kB MX29F001T chip, A16 and A15 showed continuity to ground,
40 * thus limiting the the programmer on this card to 32 kB. Without other controllers to test this programmer on,
41 * this is currently a hard limit. Note that ROM files for these controllers are 16 kB only.
42 *
43 * Since flashrom does not support accessing flash chips larger than the size limit of the programmer (the
44 * tested Ultra100 uses a 128 kB MX29F001T chip), the chip size is hackishly adjusted in atapromise_limit_chip.
45 */
46
47static uint32_t io_base_addr = 0;
48static uint32_t rom_base_addr = 0;
49
50static uint8_t *atapromise_bar = NULL;
51static size_t rom_size = 0;
52
53const struct dev_entry ata_promise[] = {
54 {0x105a, 0x4d38, NT, "Promise", "PDC20262 (FastTrak66/Ultra66)"},
55 {0x105a, 0x0d30, NT, "Promise", "PDC20265 (FastTrak100 Lite/Ultra100)"},
56 {0x105a, 0x4d30, OK, "Promise", "PDC20267 (FastTrak100/Ultra100)"},
57 {0},
58};
59
60static void atapromise_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr);
61static uint8_t atapromise_chip_readb(const struct flashctx *flash, const chipaddr addr);
62
63static const struct par_master par_master_atapromise = {
64 .chip_readb = atapromise_chip_readb,
65 .chip_readw = fallback_chip_readw,
66 .chip_readl = fallback_chip_readl,
67 .chip_readn = fallback_chip_readn,
68 .chip_writeb = atapromise_chip_writeb,
69 .chip_writew = fallback_chip_writew,
70 .chip_writel = fallback_chip_writel,
71 .chip_writen = fallback_chip_writen,
72};
73
74void *atapromise_map(const char *descr, uintptr_t phys_addr, size_t len)
75{
76 /* In case fallback_map ever returns something other than NULL. */
77 return NULL;
78}
79
80static void atapromise_limit_chip(struct flashchip *chip)
81{
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +000082 unsigned int i, size;
Carl-Daniel Hailfinger1c2d23a2016-02-18 23:11:52 +000083 unsigned int usable_erasers = 0;
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +000084
85 size = chip->total_size * 1024;
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +000086
Carl-Daniel Hailfinger1c2d23a2016-02-18 23:11:52 +000087 /* Chip is small enough or already limited. */
88 if (size <= rom_size)
89 return;
90
91 /* Undefine all block_erasers that don't operate on the whole chip,
92 * and adjust the eraseblock size of those which do.
93 */
94 for (i = 0; i < NUM_ERASEFUNCTIONS; ++i) {
95 if (chip->block_erasers[i].eraseblocks[0].size != size) {
96 chip->block_erasers[i].eraseblocks[0].count = 0;
97 chip->block_erasers[i].block_erase = NULL;
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +000098 } else {
Carl-Daniel Hailfinger1c2d23a2016-02-18 23:11:52 +000099 chip->block_erasers[i].eraseblocks[0].size = rom_size;
100 usable_erasers++;
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000101 }
102 }
103
Carl-Daniel Hailfinger1c2d23a2016-02-18 23:11:52 +0000104 if (usable_erasers) {
105 chip->total_size = rom_size / 1024;
106 if (chip->page_size > rom_size)
107 chip->page_size = rom_size;
108 } else {
109 msg_pdbg("Failed to adjust size of chip \"%s\" (%d kB).\n", chip->name, chip->total_size);
110 }
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000111}
112
113int atapromise_init(void)
114{
115 struct pci_dev *dev = NULL;
116
117 if (rget_io_perms())
118 return 1;
119
120 dev = pcidev_init(ata_promise, PCI_BASE_ADDRESS_4);
121 if (!dev)
122 return 1;
123
124 io_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_4) & 0xfffe;
125 if (!io_base_addr) {
126 return 1;
127 }
128
129 /* Not exactly sure what this does, because flashing seems to work
130 * well without it. However, PTIFLASH does it, so we do it too.
131 */
132 OUTB(1, io_base_addr + 0x10);
133
134 rom_base_addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_5);
135 if (!rom_base_addr) {
136 msg_pdbg("Failed to read BAR5\n");
137 return 1;
138 }
139
140 rom_size = dev->rom_size > MAX_ROM_DECODE ? MAX_ROM_DECODE : dev->rom_size;
141 atapromise_bar = (uint8_t*)rphysmap("Promise", rom_base_addr, rom_size);
142 if (atapromise_bar == ERROR_PTR) {
143 return 1;
144 }
145
146 max_rom_decode.parallel = rom_size;
147 register_par_master(&par_master_atapromise, BUS_PARALLEL);
148
149 msg_pwarn("Do not use this device as a generic programmer. It will leave anything outside\n"
150 "the first %zu kB of the flash chip in an undefined state. It works fine for the\n"
151 "purpose of updating the firmware of this device (padding may neccessary).\n",
152 rom_size / 1024);
153
154 return 0;
155}
156
157static void atapromise_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
158{
159 uint32_t data;
160
161 atapromise_limit_chip(flash->chip);
162 data = (rom_base_addr + (addr & ADDR_MASK)) << 8 | val;
163 OUTL(data, io_base_addr + 0x14);
164}
165
166static uint8_t atapromise_chip_readb(const struct flashctx *flash, const chipaddr addr)
167{
168 atapromise_limit_chip(flash->chip);
169 return pci_mmio_readb(atapromise_bar + (addr & ADDR_MASK));
170}
171
172#else
173#error PCI port I/O access is not supported on this architecture yet.
174#endif