Home
last modified time | relevance | path

Searched refs:nvram_write (Results 1 – 4 of 4) sorted by relevance

/qemu/hw/ppc/
H A Dprep.c83 static inline void nvram_write(Nvram *nvram, uint32_t addr, uint32_t val) in nvram_write() function
91 nvram_write(nvram, addr, value); in NVRAM_set_byte()
101 nvram_write(nvram, addr, value >> 8); in NVRAM_set_word()
102 nvram_write(nvram, addr + 1, value & 0xFF); in NVRAM_set_word()
117 nvram_write(nvram, addr, value >> 24); in NVRAM_set_lword()
118 nvram_write(nvram, addr + 1, (value >> 16) & 0xFF); in NVRAM_set_lword()
119 nvram_write(nvram, addr + 2, (value >> 8) & 0xFF); in NVRAM_set_lword()
120 nvram_write(nvram, addr + 3, value & 0xFF); in NVRAM_set_lword()
129 nvram_write(nvram, addr + i, str[i]); in NVRAM_set_string()
131 nvram_write(nvram, addr + i, str[i]); in NVRAM_set_string()
[all …]
/qemu/hw/nvram/
H A Dds1225y.c52 static void nvram_write(void *opaque, hwaddr addr, uint64_t val, in nvram_write() function
70 .write = nvram_write,
H A Dtrace-events5 nvram_write(uint32_t addr, uint32_t old, uint32_t val) "write addr %d: 0x%02x -> 0x%02x"
/qemu/hw/rtc/
H A Dm48t59.c507 static void nvram_write(void *opaque, hwaddr addr, uint64_t value, in nvram_write() function
517 .write = nvram_write,