blob: 5f5e580dec7c5f0733662fcefe652f26509c7848 [file] [log] [blame]
Uwe Hermann34eae342009-09-02 23:27:45 +00001/*
2 * This file is part of the flashrom project.
3 *
Joerg Fischer4be25c72009-09-09 00:55:13 +00004 * Copyright (C) 2009 Joerg Fischer <turboj@web.de>
Uwe Hermann34eae342009-09-02 23:27:45 +00005 *
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#include <stdlib.h>
Uwe Hermann34eae342009-09-02 23:27:45 +000022#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000023#include "programmer.h"
Uwe Hermann34eae342009-09-02 23:27:45 +000024
25#define PCI_VENDOR_ID_DRKAISER 0x1803
26
27#define PCI_MAGIC_DRKAISER_ADDR 0x50
28#define PCI_MAGIC_DRKAISER_VALUE 0xa971
29
Carl-Daniel Hailfingerfb2c4c32010-07-17 22:42:33 +000030/* Mask to restrict flash accesses to the 128kB memory window. */
31#define DRKAISER_MEMMAP_MASK ((1 << 17) - 1)
32
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000033const struct pcidev_status drkaiser_pcidev[] = {
Michael Karcher84486392010-02-24 00:04:40 +000034 {0x1803, 0x5057, OK, "Dr. Kaiser", "PC-Waechter (Actel FPGA)"},
Uwe Hermann34eae342009-09-02 23:27:45 +000035 {},
36};
37
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000038static uint8_t *drkaiser_bar;
Uwe Hermann34eae342009-09-02 23:27:45 +000039
40int drkaiser_init(void)
41{
42 uint32_t addr;
43
44 get_io_perms();
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +000045
Carl-Daniel Hailfingerfb2c4c32010-07-17 22:42:33 +000046 addr = pcidev_init(PCI_VENDOR_ID_DRKAISER, PCI_BASE_ADDRESS_2,
47 drkaiser_pcidev);
Uwe Hermann34eae342009-09-02 23:27:45 +000048
49 /* Write magic register to enable flash write. */
50 pci_write_word(pcidev_dev, PCI_MAGIC_DRKAISER_ADDR,
51 PCI_MAGIC_DRKAISER_VALUE);
52
Uwe Hermann34eae342009-09-02 23:27:45 +000053 /* Map 128KB flash memory window. */
54 drkaiser_bar = physmap("Dr. Kaiser PC-Waechter flash memory",
55 addr, 128 * 1024);
56
57 buses_supported = CHIP_BUSTYPE_PARALLEL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +000058
Uwe Hermann34eae342009-09-02 23:27:45 +000059 return 0;
60}
61
62int drkaiser_shutdown(void)
63{
64 /* Write protect the flash again. */
65 pci_write_word(pcidev_dev, PCI_MAGIC_DRKAISER_ADDR, 0);
Uwe Hermann34eae342009-09-02 23:27:45 +000066 pci_cleanup(pacc);
67 release_io_perms();
68 return 0;
69};
70
71void drkaiser_chip_writeb(uint8_t val, chipaddr addr)
72{
Carl-Daniel Hailfinger1d3a2fe2010-07-27 22:03:46 +000073 pci_mmio_writeb(val, drkaiser_bar + (addr & DRKAISER_MEMMAP_MASK));
Uwe Hermann34eae342009-09-02 23:27:45 +000074}
75
76uint8_t drkaiser_chip_readb(const chipaddr addr)
77{
Carl-Daniel Hailfinger1d3a2fe2010-07-27 22:03:46 +000078 return pci_mmio_readb(drkaiser_bar + (addr & DRKAISER_MEMMAP_MASK));
Uwe Hermann34eae342009-09-02 23:27:45 +000079}