Lines Matching defs:config
58 struct config { struct
59 struct pci_device *pci_dev;
60 char *mmiofile;
61 uint32_t devid;
64 uint32_t count;
88 static int set_reg_by_addr(struct config *config, struct reg *reg, in set_reg_by_addr()
119 static int set_reg_by_name(struct config *config, struct reg *reg, in set_reg_by_name()
181 static void dump_decode(struct config *config, struct reg *reg, uint32_t val) in dump_decode()
262 static int register_srm(struct config *config, struct reg *reg, in register_srm()
356 static int read_register(struct config *config, struct reg *reg, uint32_t *valp) in read_register()
403 static void dump_register(struct config *config, struct reg *reg) in dump_register()
411 static int write_register(struct config *config, struct reg *reg, uint32_t val) in write_register()
497 static int parse_reg(struct config *config, struct reg *reg, const char *s) in parse_reg()
545 static int intel_reg_read(struct config *config, int argc, char *argv[]) in intel_reg_read()
578 static int intel_reg_write(struct config *config, int argc, char *argv[]) in intel_reg_write()
617 static int intel_reg_dump(struct config *config, int argc, char *argv[]) in intel_reg_dump()
642 static int intel_reg_snapshot(struct config *config, int argc, char *argv[]) in intel_reg_snapshot()
665 static int intel_reg_decode(struct config *config, int argc, char *argv[]) in intel_reg_decode()
700 static int intel_reg_list(struct config *config, int argc, char *argv[]) in intel_reg_list()
761 static int intel_reg_help(struct config *config, int argc, char *argv[]) in intel_reg_help()
852 static int read_reg_spec(struct config *config) in read_reg_spec()
921 struct config config = { in main() local