Searched refs:force_addr (Results 1 – 14 of 14) sorted by relevance
/Linux-v4.19/drivers/i2c/busses/ |
D | i2c-sis5595.c | 121 static u16 force_addr; variable 122 module_param_hw(force_addr, ushort, ioport, 0); 123 MODULE_PARM_DESC(force_addr, "Initialize the base address of the i2c controller"); 161 if (sis5595_base == 0 && force_addr == 0) { in sis5595_setup() 166 if (force_addr) in sis5595_setup() 167 sis5595_base = force_addr & ~(SIS5595_EXTENT - 1); in sis5595_setup() 184 if (force_addr) { in sis5595_setup()
|
D | i2c-ali15x3.c | 121 static u16 force_addr; variable 122 module_param_hw(force_addr, ushort, ioport, 0); 123 MODULE_PARM_DESC(force_addr, 154 if (ali15x3_smba == 0 && force_addr == 0) { in ali15x3_setup() 160 if(force_addr) in ali15x3_setup() 161 ali15x3_smba = force_addr & ~(ALI15X3_SMB_IOSIZE - 1); in ali15x3_setup() 175 if(force_addr) { in ali15x3_setup()
|
D | i2c-viapro.c | 96 static u16 force_addr; variable 97 module_param_hw(force_addr, ushort, ioport, 0); 98 MODULE_PARM_DESC(force_addr, 326 if (force_addr) { in vt596_probe() 327 vt596_smba = force_addr & 0xfff0; in vt596_probe() 369 if (force_addr) { in vt596_probe()
|
D | i2c-piix4.c | 116 static int force_addr; variable 117 module_param_hw(force_addr, int, ioport, 0); 118 MODULE_PARM_DESC(force_addr, 201 if (force_addr) { in piix4_setup() 202 piix4_smba = force_addr & 0xfff0; in piix4_setup() 228 if (force_addr) { in piix4_setup() 280 if (force || force_addr) { in piix4_setup_sb800()
|
/Linux-v4.19/drivers/hwmon/ |
D | sis5595.c | 75 static u16 force_addr; variable 76 module_param(force_addr, ushort, 0); 77 MODULE_PARM_DESC(force_addr, 839 force_addr &= ~(SIS5595_EXTENT - 1); in sis5595_pci_probe() 840 if (force_addr) { in sis5595_pci_probe() 841 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr); in sis5595_pci_probe() 842 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr); in sis5595_pci_probe() 857 if (force_addr && address != force_addr) { in sis5595_pci_probe()
|
D | via686a.c | 55 static unsigned short force_addr; variable 56 module_param(force_addr, ushort, 0); 57 MODULE_PARM_DESC(force_addr, 878 if (force_addr) { in via686a_pci_probe() 879 address = force_addr & ~(VIA686A_EXTENT - 1); in via686a_pci_probe() 900 if (!force_addr) { in via686a_pci_probe()
|
D | vt8231.c | 44 static int force_addr; variable 45 module_param(force_addr, int, 0); 46 MODULE_PARM_DESC(force_addr, "Initialize the base address of the sensors"); 994 if (force_addr) { in vt8231_pci_probe() 995 address = force_addr & 0xff00; in vt8231_pci_probe()
|
/Linux-v4.19/Documentation/hwmon/ |
D | via686a | 21 force_addr=0xaddr Set the I/O base address. Useful for boards that 27 Example: 'modprobe via686a force_addr=0x6000' 76 So, if you need the force_addr parameter, and end up with values which
|
D | sis5595 | 42 force_addr=0xaddr Set the I/O base address. Useful for boards 47 Example: 'modprobe sis5595 force_addr=0x290'
|
D | w83627hf | 71 The driver used to have a module parameter named force_addr, which could
|
/Linux-v4.19/Documentation/i2c/busses/ |
D | i2c-ali15x3 | 16 * force_addr: int 23 The force_addr parameter is useful for boards that don't set the address in 28 Example: 'modprobe i2c-ali15x3 force_addr=0xe800'
|
D | i2c-sis5595 | 43 * force_addr=0xaddr Set the I/O base address. Useful for boards
|
D | i2c-piix4 | 31 * force_addr: int 62 option is 'force_addr=<IOPORT>'. This will not only enable the PIIX4 like
|
D | i2c-viapro | 38 * force_addr: int
|