blob: 7e671b8608270e7d7155ab8034ba9b364d7e13a8 [file] [log] [blame]
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Carl-Daniel Hailfinger
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#include <stdint.h>
22#include <string.h>
23#include <stdlib.h>
24#include <fcntl.h>
25#include <sys/types.h>
26#include <sys/stat.h>
27#include <errno.h>
28#include <pci/pci.h>
29#include "flash.h"
30
31int dummy_init(void)
32{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000033 printf_debug("%s\n", __func__);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +000034 flashbus = BUS_TYPE_DUMMY_SPI;
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000035 return 0;
36}
37
38int dummy_shutdown(void)
39{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000040 printf_debug("%s\n", __func__);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000041 return 0;
42}
43
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000044void *dummy_map(const char *descr, unsigned long phys_addr, size_t len)
45{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000046 printf_debug("%s: Mapping %s, 0x%lx bytes at 0x%08lx\n",
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000047 __func__, descr, (unsigned long)len, phys_addr);
48 return (void *)phys_addr;
49}
50
51void dummy_unmap(void *virt_addr, size_t len)
52{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000053 printf_debug("%s: Unmapping 0x%lx bytes at %p\n",
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000054 __func__, (unsigned long)len, virt_addr);
55}
56
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000057void dummy_chip_writeb(uint8_t val, volatile void *addr)
58{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000059 printf_debug("%s: addr=%p, val=0x%02x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000060}
61
62void dummy_chip_writew(uint16_t val, volatile void *addr)
63{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000064 printf_debug("%s: addr=%p, val=0x%04x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000065}
66
67void dummy_chip_writel(uint32_t val, volatile void *addr)
68{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000069 printf_debug("%s: addr=%p, val=0x%08x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000070}
71
72uint8_t dummy_chip_readb(const volatile void *addr)
73{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000074 printf_debug("%s: addr=%p, returning 0xff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000075 return 0xff;
76}
77
78uint16_t dummy_chip_readw(const volatile void *addr)
79{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000080 printf_debug("%s: addr=%p, returning 0xffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000081 return 0xffff;
82}
83
84uint32_t dummy_chip_readl(const volatile void *addr)
85{
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000086 printf_debug("%s: addr=%p, returning 0xffffffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000087 return 0xffffffff;
88}
89
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +000090int dummy_spi_command(unsigned int writecnt, unsigned int readcnt,
91 const unsigned char *writearr, unsigned char *readarr)
92{
93 int i;
94
95 printf_debug("%s:", __func__);
96
97 printf_debug(" writing %u bytes:", writecnt);
98 for (i = 0; i < writecnt; i++)
99 printf_debug(" 0x%02x", writearr[i]);
100
101 printf_debug(" reading %u bytes:", readcnt);
102 for (i = 0; i < readcnt; i++) {
103 printf_debug(" 0xff");
104 readarr[i] = 0xff;
105 }
106
107 printf_debug("\n");
108 return 0;
109}