blob: 051f3334ba29fceece2103df21dee26d5f8d8f42 [file] [log] [blame]
hailfingerfb1f31f2010-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
Patrick Georgi8ae16572017-03-09 15:59:25 +010048const struct dev_entry ogp_spi[] = {
hailfingerfb1f31f2010-12-03 14:48:11 +000049 {PCI_VENDOR_ID_OGP, 0x0000, OK, "Open Graphics Project", "Development Board OGD1"},
Patrick Georgi8ddfee92017-03-20 14:54:28 +010050 {0},
hailfingerfb1f31f2010-12-03 14:48:11 +000051};
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,
Patrick Georgie081d5d2017-03-22 21:18:18 +010094 .half_period = 0,
hailfingerfb1f31f2010-12-03 14:48:11 +000095};
96
David Hendricksac1d25c2016-08-09 17:00:58 -070097int ogp_spi_init(void)
hailfingerfb1f31f2010-12-03 14:48:11 +000098{
99 char *type;
100
101 type = extract_programmer_param("rom");
102
103 if (!type) {
104 msg_perr("Please use flashrom -p ogp_spi:rom=... to specify "
105 "which flashchip you want to access.\n");
106 return 1;
107 } else if (!strcasecmp(type, "bprom") || !strcasecmp(type, "bios")) {
108 ogp_reg_sel = OGA1_XP10_BPROM_REG_SEL;
109 ogp_reg_siso = OGA1_XP10_BPROM_SI;
110 ogp_reg__ce = OGA1_XP10_BPROM_CE_BAR;
111 ogp_reg_sck = OGA1_XP10_BPROM_SCK;
112 } else if (!strcasecmp(type, "cprom") || !strcasecmp(type, "s3")) {
113 ogp_reg_sel = OGA1_XP10_CPROM_REG_SEL;
114 ogp_reg_siso = OGA1_XP10_CPROM_SI;
115 ogp_reg__ce = OGA1_XP10_CPROM_CE_BAR;
116 ogp_reg_sck = OGA1_XP10_CPROM_SCK;
117 } else {
118 msg_perr("Invalid or missing rom= parameter.\n");
119 return 1;
120 }
121
Patrick Georgi2a2d67f2017-03-09 10:15:39 +0100122 if (rget_io_perms())
123 return 1;
hailfingerfb1f31f2010-12-03 14:48:11 +0000124
hailfinger0d703d42011-03-07 01:08:09 +0000125 io_base_addr = pcidev_init(PCI_BASE_ADDRESS_0, ogp_spi);
hailfingerfb1f31f2010-12-03 14:48:11 +0000126
Patrick Georgi124bd002017-03-21 17:25:59 +0100127 ogp_spibar = rphysmap("OGP registers", io_base_addr, 4096);
128 if (ogp_spibar == ERROR_PTR)
dhendrix0ffc2eb2011-06-14 01:35:36 +0000129 return 1;
130
Patrick Georgie081d5d2017-03-22 21:18:18 +0100131 if (register_spi_bitbang_master(&bitbang_spi_master_ogp))
hailfingerfb1f31f2010-12-03 14:48:11 +0000132 return 1;
133
hailfingerfb1f31f2010-12-03 14:48:11 +0000134 return 0;
135}