Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20190719' into staging
[qemu/ar7.git] / tests / m25p80-test.c
blob055f7246a88054b4a4ac283e4b52068360f2f829
1 /*
2 * QTest testcase for the M25P80 Flash (Using the Aspeed SPI
3 * Controller)
5 * Copyright (C) 2016 IBM Corp.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
26 #include "qemu/osdep.h"
27 #include "qemu/bswap.h"
28 #include "libqtest.h"
31 * ASPEED SPI Controller registers
33 #define R_CONF 0x00
34 #define CONF_ENABLE_W0 (1 << 16)
35 #define R_CE_CTRL 0x04
36 #define CRTL_EXTENDED0 0 /* 32 bit addressing for SPI */
37 #define R_CTRL0 0x10
38 #define CTRL_CE_STOP_ACTIVE (1 << 2)
39 #define CTRL_READMODE 0x0
40 #define CTRL_FREADMODE 0x1
41 #define CTRL_WRITEMODE 0x2
42 #define CTRL_USERMODE 0x3
44 #define ASPEED_FMC_BASE 0x1E620000
45 #define ASPEED_FLASH_BASE 0x20000000
48 * Flash commands
50 enum {
51 JEDEC_READ = 0x9f,
52 BULK_ERASE = 0xc7,
53 READ = 0x03,
54 PP = 0x02,
55 WREN = 0x6,
56 RESET_ENABLE = 0x66,
57 RESET_MEMORY = 0x99,
58 EN_4BYTE_ADDR = 0xB7,
59 ERASE_SECTOR = 0xd8,
62 #define FLASH_JEDEC 0x20ba19 /* n25q256a */
63 #define FLASH_SIZE (32 * 1024 * 1024)
65 #define PAGE_SIZE 256
68 * Use an explicit bswap for the values read/wrote to the flash region
69 * as they are BE and the Aspeed CPU is LE.
71 static inline uint32_t make_be32(uint32_t data)
73 return bswap32(data);
76 static void spi_conf(uint32_t value)
78 uint32_t conf = readl(ASPEED_FMC_BASE + R_CONF);
80 conf |= value;
81 writel(ASPEED_FMC_BASE + R_CONF, conf);
84 static void spi_conf_remove(uint32_t value)
86 uint32_t conf = readl(ASPEED_FMC_BASE + R_CONF);
88 conf &= ~value;
89 writel(ASPEED_FMC_BASE + R_CONF, conf);
92 static void spi_ce_ctrl(uint32_t value)
94 uint32_t conf = readl(ASPEED_FMC_BASE + R_CE_CTRL);
96 conf |= value;
97 writel(ASPEED_FMC_BASE + R_CE_CTRL, conf);
100 static void spi_ctrl_setmode(uint8_t mode, uint8_t cmd)
102 uint32_t ctrl = readl(ASPEED_FMC_BASE + R_CTRL0);
103 ctrl &= ~(CTRL_USERMODE | 0xff << 16);
104 ctrl |= mode | (cmd << 16);
105 writel(ASPEED_FMC_BASE + R_CTRL0, ctrl);
108 static void spi_ctrl_start_user(void)
110 uint32_t ctrl = readl(ASPEED_FMC_BASE + R_CTRL0);
112 ctrl |= CTRL_USERMODE | CTRL_CE_STOP_ACTIVE;
113 writel(ASPEED_FMC_BASE + R_CTRL0, ctrl);
115 ctrl &= ~CTRL_CE_STOP_ACTIVE;
116 writel(ASPEED_FMC_BASE + R_CTRL0, ctrl);
119 static void spi_ctrl_stop_user(void)
121 uint32_t ctrl = readl(ASPEED_FMC_BASE + R_CTRL0);
123 ctrl |= CTRL_USERMODE | CTRL_CE_STOP_ACTIVE;
124 writel(ASPEED_FMC_BASE + R_CTRL0, ctrl);
127 static void flash_reset(void)
129 spi_conf(CONF_ENABLE_W0);
131 spi_ctrl_start_user();
132 writeb(ASPEED_FLASH_BASE, RESET_ENABLE);
133 writeb(ASPEED_FLASH_BASE, RESET_MEMORY);
134 spi_ctrl_stop_user();
136 spi_conf_remove(CONF_ENABLE_W0);
139 static void test_read_jedec(void)
141 uint32_t jedec = 0x0;
143 spi_conf(CONF_ENABLE_W0);
145 spi_ctrl_start_user();
146 writeb(ASPEED_FLASH_BASE, JEDEC_READ);
147 jedec |= readb(ASPEED_FLASH_BASE) << 16;
148 jedec |= readb(ASPEED_FLASH_BASE) << 8;
149 jedec |= readb(ASPEED_FLASH_BASE);
150 spi_ctrl_stop_user();
152 flash_reset();
154 g_assert_cmphex(jedec, ==, FLASH_JEDEC);
157 static void read_page(uint32_t addr, uint32_t *page)
159 int i;
161 spi_ctrl_start_user();
163 writeb(ASPEED_FLASH_BASE, EN_4BYTE_ADDR);
164 writeb(ASPEED_FLASH_BASE, READ);
165 writel(ASPEED_FLASH_BASE, make_be32(addr));
167 /* Continuous read are supported */
168 for (i = 0; i < PAGE_SIZE / 4; i++) {
169 page[i] = make_be32(readl(ASPEED_FLASH_BASE));
171 spi_ctrl_stop_user();
174 static void read_page_mem(uint32_t addr, uint32_t *page)
176 int i;
178 /* move out USER mode to use direct reads from the AHB bus */
179 spi_ctrl_setmode(CTRL_READMODE, READ);
181 for (i = 0; i < PAGE_SIZE / 4; i++) {
182 page[i] = make_be32(readl(ASPEED_FLASH_BASE + addr + i * 4));
186 static void test_erase_sector(void)
188 uint32_t some_page_addr = 0x600 * PAGE_SIZE;
189 uint32_t page[PAGE_SIZE / 4];
190 int i;
192 spi_conf(CONF_ENABLE_W0);
194 spi_ctrl_start_user();
195 writeb(ASPEED_FLASH_BASE, WREN);
196 writeb(ASPEED_FLASH_BASE, EN_4BYTE_ADDR);
197 writeb(ASPEED_FLASH_BASE, ERASE_SECTOR);
198 writel(ASPEED_FLASH_BASE, make_be32(some_page_addr));
199 spi_ctrl_stop_user();
201 /* Previous page should be full of zeroes as backend is not
202 * initialized */
203 read_page(some_page_addr - PAGE_SIZE, page);
204 for (i = 0; i < PAGE_SIZE / 4; i++) {
205 g_assert_cmphex(page[i], ==, 0x0);
208 /* But this one was erased */
209 read_page(some_page_addr, page);
210 for (i = 0; i < PAGE_SIZE / 4; i++) {
211 g_assert_cmphex(page[i], ==, 0xffffffff);
214 flash_reset();
217 static void test_erase_all(void)
219 uint32_t some_page_addr = 0x15000 * PAGE_SIZE;
220 uint32_t page[PAGE_SIZE / 4];
221 int i;
223 spi_conf(CONF_ENABLE_W0);
225 /* Check some random page. Should be full of zeroes as backend is
226 * not initialized */
227 read_page(some_page_addr, page);
228 for (i = 0; i < PAGE_SIZE / 4; i++) {
229 g_assert_cmphex(page[i], ==, 0x0);
232 spi_ctrl_start_user();
233 writeb(ASPEED_FLASH_BASE, WREN);
234 writeb(ASPEED_FLASH_BASE, BULK_ERASE);
235 spi_ctrl_stop_user();
237 /* Recheck that some random page */
238 read_page(some_page_addr, page);
239 for (i = 0; i < PAGE_SIZE / 4; i++) {
240 g_assert_cmphex(page[i], ==, 0xffffffff);
243 flash_reset();
246 static void test_write_page(void)
248 uint32_t my_page_addr = 0x14000 * PAGE_SIZE; /* beyond 16MB */
249 uint32_t some_page_addr = 0x15000 * PAGE_SIZE;
250 uint32_t page[PAGE_SIZE / 4];
251 int i;
253 spi_conf(CONF_ENABLE_W0);
255 spi_ctrl_start_user();
256 writeb(ASPEED_FLASH_BASE, EN_4BYTE_ADDR);
257 writeb(ASPEED_FLASH_BASE, WREN);
258 writeb(ASPEED_FLASH_BASE, PP);
259 writel(ASPEED_FLASH_BASE, make_be32(my_page_addr));
261 /* Fill the page with its own addresses */
262 for (i = 0; i < PAGE_SIZE / 4; i++) {
263 writel(ASPEED_FLASH_BASE, make_be32(my_page_addr + i * 4));
265 spi_ctrl_stop_user();
267 /* Check what was written */
268 read_page(my_page_addr, page);
269 for (i = 0; i < PAGE_SIZE / 4; i++) {
270 g_assert_cmphex(page[i], ==, my_page_addr + i * 4);
273 /* Check some other page. It should be full of 0xff */
274 read_page(some_page_addr, page);
275 for (i = 0; i < PAGE_SIZE / 4; i++) {
276 g_assert_cmphex(page[i], ==, 0xffffffff);
279 flash_reset();
282 static void test_read_page_mem(void)
284 uint32_t my_page_addr = 0x14000 * PAGE_SIZE; /* beyond 16MB */
285 uint32_t some_page_addr = 0x15000 * PAGE_SIZE;
286 uint32_t page[PAGE_SIZE / 4];
287 int i;
289 /* Enable 4BYTE mode for controller. This is should be strapped by
290 * HW for CE0 anyhow.
292 spi_ce_ctrl(1 << CRTL_EXTENDED0);
294 /* Enable 4BYTE mode for flash. */
295 spi_conf(CONF_ENABLE_W0);
296 spi_ctrl_start_user();
297 writeb(ASPEED_FLASH_BASE, EN_4BYTE_ADDR);
298 spi_ctrl_stop_user();
299 spi_conf_remove(CONF_ENABLE_W0);
301 /* Check what was written */
302 read_page_mem(my_page_addr, page);
303 for (i = 0; i < PAGE_SIZE / 4; i++) {
304 g_assert_cmphex(page[i], ==, my_page_addr + i * 4);
307 /* Check some other page. It should be full of 0xff */
308 read_page_mem(some_page_addr, page);
309 for (i = 0; i < PAGE_SIZE / 4; i++) {
310 g_assert_cmphex(page[i], ==, 0xffffffff);
313 flash_reset();
316 static void test_write_page_mem(void)
318 uint32_t my_page_addr = 0x15000 * PAGE_SIZE;
319 uint32_t page[PAGE_SIZE / 4];
320 int i;
322 /* Enable 4BYTE mode for controller. This is should be strapped by
323 * HW for CE0 anyhow.
325 spi_ce_ctrl(1 << CRTL_EXTENDED0);
327 /* Enable 4BYTE mode for flash. */
328 spi_conf(CONF_ENABLE_W0);
329 spi_ctrl_start_user();
330 writeb(ASPEED_FLASH_BASE, EN_4BYTE_ADDR);
331 writeb(ASPEED_FLASH_BASE, WREN);
332 spi_ctrl_stop_user();
334 /* move out USER mode to use direct writes to the AHB bus */
335 spi_ctrl_setmode(CTRL_WRITEMODE, PP);
337 for (i = 0; i < PAGE_SIZE / 4; i++) {
338 writel(ASPEED_FLASH_BASE + my_page_addr + i * 4,
339 make_be32(my_page_addr + i * 4));
342 /* Check what was written */
343 read_page_mem(my_page_addr, page);
344 for (i = 0; i < PAGE_SIZE / 4; i++) {
345 g_assert_cmphex(page[i], ==, my_page_addr + i * 4);
348 flash_reset();
351 static char tmp_path[] = "/tmp/qtest.m25p80.XXXXXX";
353 int main(int argc, char **argv)
355 int ret;
356 int fd;
358 g_test_init(&argc, &argv, NULL);
360 fd = mkstemp(tmp_path);
361 g_assert(fd >= 0);
362 ret = ftruncate(fd, FLASH_SIZE);
363 g_assert(ret == 0);
364 close(fd);
366 global_qtest = qtest_initf("-m 256 -machine palmetto-bmc "
367 "-drive file=%s,format=raw,if=mtd",
368 tmp_path);
370 qtest_add_func("/m25p80/read_jedec", test_read_jedec);
371 qtest_add_func("/m25p80/erase_sector", test_erase_sector);
372 qtest_add_func("/m25p80/erase_all", test_erase_all);
373 qtest_add_func("/m25p80/write_page", test_write_page);
374 qtest_add_func("/m25p80/read_page_mem", test_read_page_mem);
375 qtest_add_func("/m25p80/write_page_mem", test_write_page_mem);
377 ret = g_test_run();
379 qtest_quit(global_qtest);
380 unlink(tmp_path);
381 return ret;