Lines Matching defs:rom_start
130 static int check_for_compaq_ROM(void __iomem *rom_start)
135 temp1 = readb(rom_start + 0xffea + 0);
136 temp2 = readb(rom_start + 0xffea + 1);
137 temp3 = readb(rom_start + 0xffea + 2);
138 temp4 = readb(rom_start + 0xffea + 3);
139 temp5 = readb(rom_start + 0xffea + 4);
140 temp6 = readb(rom_start + 0xffea + 5);
186 static int load_HRT(void __iomem *rom_start)
193 if (!check_for_compaq_ROM(rom_start))
221 static u32 store_HRT(void __iomem *rom_start)
238 if (!check_for_compaq_ROM(rom_start))
412 void compaq_nvram_init(void __iomem *rom_start)
414 if (rom_start)
415 compaq_int15_entry_point = (rom_start + ROM_INT15_PHY_ADDR - ROM_PHY_ADDR);
424 int compaq_nvram_load(void __iomem *rom_start, struct controller *ctrl)
439 if (load_HRT(rom_start))
639 int compaq_nvram_store(void __iomem *rom_start)
643 if (rom_start == NULL)
647 rc = store_HRT(rom_start);