]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef NVRAM_H |
2 | #define NVRAM_H | |
3 | ||
4 | /* NVRAM helpers */ | |
c227f099 AL |
5 | typedef uint32_t (*nvram_read_t)(void *private, uint32_t addr); |
6 | typedef void (*nvram_write_t)(void *private, uint32_t addr, uint32_t val); | |
7 | typedef struct nvram_t { | |
87ecb68b | 8 | void *opaque; |
c227f099 AL |
9 | nvram_read_t read_fn; |
10 | nvram_write_t write_fn; | |
11 | } nvram_t; | |
87ecb68b | 12 | |
c227f099 AL |
13 | void NVRAM_set_byte (nvram_t *nvram, uint32_t addr, uint8_t value); |
14 | uint8_t NVRAM_get_byte (nvram_t *nvram, uint32_t addr); | |
15 | void NVRAM_set_word (nvram_t *nvram, uint32_t addr, uint16_t value); | |
16 | uint16_t NVRAM_get_word (nvram_t *nvram, uint32_t addr); | |
17 | void NVRAM_set_lword (nvram_t *nvram, uint32_t addr, uint32_t value); | |
18 | uint32_t NVRAM_get_lword (nvram_t *nvram, uint32_t addr); | |
19 | void NVRAM_set_string (nvram_t *nvram, uint32_t addr, | |
b55266b5 | 20 | const char *str, uint32_t max); |
c227f099 AL |
21 | int NVRAM_get_string (nvram_t *nvram, uint8_t *dst, uint16_t addr, int max); |
22 | void NVRAM_set_crc (nvram_t *nvram, uint32_t addr, | |
87ecb68b | 23 | uint32_t start, uint32_t count); |
c227f099 | 24 | int PPC_NVRAM_set_params (nvram_t *nvram, uint16_t NVRAM_size, |
b55266b5 | 25 | const char *arch, |
87ecb68b PB |
26 | uint32_t RAM_size, int boot_device, |
27 | uint32_t kernel_image, uint32_t kernel_size, | |
28 | const char *cmdline, | |
29 | uint32_t initrd_image, uint32_t initrd_size, | |
30 | uint32_t NVRAM_image, | |
31 | int width, int height, int depth); | |
43a34704 | 32 | typedef struct M48t59State M48t59State; |
87ecb68b PB |
33 | |
34 | void m48t59_write (void *private, uint32_t addr, uint32_t val); | |
35 | uint32_t m48t59_read (void *private, uint32_t addr); | |
36 | void m48t59_toggle_lock (void *private, int lock); | |
48a18b3c HP |
37 | M48t59State *m48t59_init_isa(ISABus *bus, uint32_t io_base, uint16_t size, |
38 | int type); | |
43a34704 BS |
39 | M48t59State *m48t59_init(qemu_irq IRQ, target_phys_addr_t mem_base, |
40 | uint32_t io_base, uint16_t size, int type); | |
9596ebb7 | 41 | void m48t59_set_addr (void *opaque, uint32_t addr); |
87ecb68b PB |
42 | |
43 | #endif /* !NVRAM_H */ |