7851096fadb858c827a9e50652317ac4772fa6fb
[qemu] / hw / ds1225y.c
1 /*\r
2  * QEMU NVRAM emulation for DS1225Y chip\r
3  * \r
4  * Copyright (c) 2007 HervĂ© Poussineau\r
5  * \r
6  * Permission is hereby granted, free of charge, to any person obtaining a copy\r
7  * of this software and associated documentation files (the "Software"), to deal\r
8  * in the Software without restriction, including without limitation the rights\r
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
10  * copies of the Software, and to permit persons to whom the Software is\r
11  * furnished to do so, subject to the following conditions:\r
12  *\r
13  * The above copyright notice and this permission notice shall be included in\r
14  * all copies or substantial portions of the Software.\r
15  *\r
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\r
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
22  * THE SOFTWARE.\r
23  */\r
24 \r
25 #include "vl.h"\r
26 \r
27 typedef enum\r
28 {\r
29     none = 0,\r
30     readmode,\r
31     writemode,\r
32 } nvram_open_mode;\r
33 \r
34 struct ds1225y_t\r
35 {\r
36     target_phys_addr_t mem_base;\r
37     uint32_t capacity;\r
38     const char *filename;\r
39     QEMUFile *file;\r
40     nvram_open_mode open_mode;\r
41 };\r
42 \r
43 static int ds1225y_set_to_mode(ds1225y_t *NVRAM, nvram_open_mode mode, const char *filemode)\r
44 {\r
45     if (NVRAM->open_mode != mode)\r
46     {\r
47         if (NVRAM->file)\r
48             qemu_fclose(NVRAM->file);\r
49         NVRAM->file = qemu_fopen(NVRAM->filename, filemode);\r
50         NVRAM->open_mode = mode;\r
51     }\r
52     return (NVRAM->file != NULL);\r
53 }\r
54 \r
55 static uint32_t nvram_readb (void *opaque, target_phys_addr_t addr)\r
56 {\r
57     ds1225y_t *NVRAM = opaque;\r
58     int64_t pos;\r
59 \r
60     pos = addr - NVRAM->mem_base;\r
61     if (addr >= NVRAM->capacity)\r
62         addr -= NVRAM->capacity;\r
63 \r
64     if (!ds1225y_set_to_mode(NVRAM, readmode, "rb"))\r
65         return 0;\r
66     qemu_fseek(NVRAM->file, pos, SEEK_SET);\r
67     return (uint32_t)qemu_get_byte(NVRAM->file);\r
68 }\r
69 \r
70 static void nvram_writeb (void *opaque, target_phys_addr_t addr, uint32_t value)\r
71 {\r
72     ds1225y_t *NVRAM = opaque;\r
73     int64_t pos;\r
74 \r
75     pos = addr - NVRAM->mem_base;\r
76     if (ds1225y_set_to_mode(NVRAM, writemode, "wb"))\r
77     {\r
78         qemu_fseek(NVRAM->file, pos, SEEK_SET);\r
79         qemu_put_byte(NVRAM->file, (int)value);\r
80     }\r
81 }\r
82 \r
83 static CPUReadMemoryFunc *nvram_read[] = {\r
84     &nvram_readb,\r
85     NULL,\r
86     NULL,\r
87 };\r
88 \r
89 static CPUWriteMemoryFunc *nvram_write[] = {\r
90     &nvram_writeb,\r
91     NULL,\r
92     NULL,\r
93 };\r
94 \r
95 static CPUWriteMemoryFunc *nvram_none[] = {\r
96     NULL,\r
97     NULL,\r
98     NULL,\r
99 };\r
100 \r
101 /* Initialisation routine */\r
102 ds1225y_t *ds1225y_init(target_phys_addr_t mem_base, const char *filename)\r
103 {\r
104     ds1225y_t *s;\r
105     int mem_index1, mem_index2;\r
106 \r
107     s = qemu_mallocz(sizeof(ds1225y_t));\r
108     if (!s)\r
109         return NULL;\r
110     s->mem_base = mem_base;\r
111     s->capacity = 0x2000; /* Fixed for ds1225y chip: 8K */\r
112     s->filename = filename;\r
113 \r
114     /* Read/write memory */\r
115     mem_index1 = cpu_register_io_memory(0, nvram_read, nvram_write, s);\r
116     cpu_register_physical_memory(mem_base, s->capacity, mem_index1);\r
117     /* Read-only memory */\r
118     mem_index2 = cpu_register_io_memory(0, nvram_read, nvram_none, s);\r
119     cpu_register_physical_memory(mem_base + s->capacity, s->capacity, mem_index2);\r
120     return s;\r
121 }\r