Lines Matching refs:rom_start
144 static int check_for_compaq_ROM (void __iomem *rom_start) in check_for_compaq_ROM() argument
149 temp1 = readb(rom_start + 0xffea + 0); in check_for_compaq_ROM()
150 temp2 = readb(rom_start + 0xffea + 1); in check_for_compaq_ROM()
151 temp3 = readb(rom_start + 0xffea + 2); in check_for_compaq_ROM()
152 temp4 = readb(rom_start + 0xffea + 3); in check_for_compaq_ROM()
153 temp5 = readb(rom_start + 0xffea + 4); in check_for_compaq_ROM()
154 temp6 = readb(rom_start + 0xffea + 5); in check_for_compaq_ROM()
200 static int load_HRT (void __iomem *rom_start) in load_HRT() argument
207 if (!check_for_compaq_ROM(rom_start)) in load_HRT()
235 static u32 store_HRT (void __iomem *rom_start) in store_HRT() argument
252 if (!check_for_compaq_ROM(rom_start)) in store_HRT()
426 void compaq_nvram_init (void __iomem *rom_start) in compaq_nvram_init() argument
428 if (rom_start) in compaq_nvram_init()
429 compaq_int15_entry_point = (rom_start + ROM_INT15_PHY_ADDR - ROM_PHY_ADDR); in compaq_nvram_init()
438 int compaq_nvram_load (void __iomem *rom_start, struct controller *ctrl) in compaq_nvram_load() argument
453 if (load_HRT(rom_start)) in compaq_nvram_load()
653 int compaq_nvram_store (void __iomem *rom_start) in compaq_nvram_store() argument
657 if (rom_start == NULL) in compaq_nvram_store()
661 rc = store_HRT(rom_start); in compaq_nvram_store()