blob: 2916ae1f96d0832c0f898c47c4ddd56bdc5737fc [file] [log] [blame]
Mark Marshall90021f22010-12-03 14:48:11 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2010 Mark Marshall
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; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <stdlib.h>
21#include <string.h>
22#include "flash.h"
23#include "programmer.h"
24
25#define PCI_VENDOR_ID_OGP 0x1227
26
27/* These are the register addresses for the OGD1 / OGA1. If they are
28 * different for later versions of the hardware then we will need
29 * logic to select between the different hardware versions. */
30#define OGA1_XP10_BPROM_SI 0x0040 /* W */
31#define OGA1_XP10_BPROM_SO 0x0040 /* R */
32#define OGA1_XP10_BPROM_CE_BAR 0x0044 /* W */
33#define OGA1_XP10_BPROM_SCK 0x0048 /* W */
34#define OGA1_XP10_BPROM_REG_SEL 0x004C /* W */
35#define OGA1_XP10_CPROM_SI 0x0050 /* W */
36#define OGA1_XP10_CPROM_SO 0x0050 /* R */
37#define OGA1_XP10_CPROM_CE_BAR 0x0054 /* W */
38#define OGA1_XP10_CPROM_SCK 0x0058 /* W */
39#define OGA1_XP10_CPROM_REG_SEL 0x005C /* W */
40
41static uint8_t *ogp_spibar;
42
43static uint32_t ogp_reg_sel;
44static uint32_t ogp_reg_siso;
45static uint32_t ogp_reg__ce;
46static uint32_t ogp_reg_sck;
47
48const struct pcidev_status ogp_spi[] = {
49 {PCI_VENDOR_ID_OGP, 0x0000, OK, "Open Graphics Project", "Development Board OGD1"},
50 {},
51};
52
53static void ogp_request_spibus(void)
54{
55 pci_mmio_writel(1, ogp_spibar + ogp_reg_sel);
56}
57
58static void ogp_release_spibus(void)
59{
60 pci_mmio_writel(0, ogp_spibar + ogp_reg_sel);
61}
62
63static void ogp_bitbang_set_cs(int val)
64{
65 pci_mmio_writel(val, ogp_spibar + ogp_reg__ce);
66}
67
68static void ogp_bitbang_set_sck(int val)
69{
70 pci_mmio_writel(val, ogp_spibar + ogp_reg_sck);
71}
72
73static void ogp_bitbang_set_mosi(int val)
74{
75 pci_mmio_writel(val, ogp_spibar + ogp_reg_siso);
76}
77
78static int ogp_bitbang_get_miso(void)
79{
80 uint32_t tmp;
81
82 tmp = pci_mmio_readl(ogp_spibar + ogp_reg_siso);
83 return tmp & 0x1;
84}
85
86static const struct bitbang_spi_master bitbang_spi_master_ogp = {
87 .type = BITBANG_SPI_MASTER_OGP,
88 .set_cs = ogp_bitbang_set_cs,
89 .set_sck = ogp_bitbang_set_sck,
90 .set_mosi = ogp_bitbang_set_mosi,
91 .get_miso = ogp_bitbang_get_miso,
92 .request_bus = ogp_request_spibus,
93 .release_bus = ogp_release_spibus,
94};
95
96int ogp_spi_init(void)
97{
98 char *type;
99
100 type = extract_programmer_param("rom");
101
102 if (!type) {
103 msg_perr("Please use flashrom -p ogp_spi:rom=... to specify "
104 "which flashchip you want to access.\n");
105 return 1;
106 } else if (!strcasecmp(type, "bprom") || !strcasecmp(type, "bios")) {
107 ogp_reg_sel = OGA1_XP10_BPROM_REG_SEL;
108 ogp_reg_siso = OGA1_XP10_BPROM_SI;
109 ogp_reg__ce = OGA1_XP10_BPROM_CE_BAR;
110 ogp_reg_sck = OGA1_XP10_BPROM_SCK;
111 } else if (!strcasecmp(type, "cprom") || !strcasecmp(type, "s3")) {
112 ogp_reg_sel = OGA1_XP10_CPROM_REG_SEL;
113 ogp_reg_siso = OGA1_XP10_CPROM_SI;
114 ogp_reg__ce = OGA1_XP10_CPROM_CE_BAR;
115 ogp_reg_sck = OGA1_XP10_CPROM_SCK;
116 } else {
117 msg_perr("Invalid or missing rom= parameter.\n");
118 return 1;
119 }
120
121 get_io_perms();
122
Carl-Daniel Hailfinger40446ee2011-03-07 01:08:09 +0000123 io_base_addr = pcidev_init(PCI_BASE_ADDRESS_0, ogp_spi);
Mark Marshall90021f22010-12-03 14:48:11 +0000124
125 ogp_spibar = physmap("OGP registers", io_base_addr, 4096);
126
127 /* no delay for now. */
128 if (bitbang_spi_init(&bitbang_spi_master_ogp, 0))
129 return 1;
130
Mark Marshall90021f22010-12-03 14:48:11 +0000131 return 0;
132}
133
134int ogp_spi_shutdown(void)
135{
136 physunmap(ogp_spibar, 4096);
137 pci_cleanup(pacc);
138 release_io_perms();
139
140 return 0;
141}