Searched refs:config1 (Results 1 - 24 of 24) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/mm/
H A Dsc-mips.c58 unsigned int config1, config2; local
72 config1 = read_c0_config1();
73 if (!(config1 & MIPS_CONF_M))
H A Dc-sb1.c426 * Relevant bits of the config1 register format (from the MIPS32/MIPS64 specs)
443 u32 config1; local
445 config1 = read_c0_config1();
446 icache_line_size = decode_cache_line_size((config1 >> 19) & 0x7);
447 dcache_line_size = decode_cache_line_size((config1 >> 10) & 0x7);
448 icache_sets = decode_cache_sets((config1 >> 22) & 0x7);
449 dcache_sets = decode_cache_sets((config1 >> 13) & 0x7);
450 icache_assoc = ((config1 >> 16) & 0x7) + 1;
451 dcache_assoc = ((config1 >> 7) & 0x7) + 1;
H A Dc-r4k.c705 unsigned long config1; local
862 config1 = read_c0_config1();
864 if ((lsize = ((config1 >> 19) & 7)))
868 c->icache.sets = 64 << ((config1 >> 22) & 7);
869 c->icache.ways = 1 + ((config1 >> 16) & 7);
884 if ((lsize = ((config1 >> 10) & 7)))
888 c->dcache.sets = 64 << ((config1 >> 13) & 7);
889 c->dcache.ways = 1 + ((config1 >> 7) & 7);
980 unsigned long config1 = read_c0_config1(); local
983 if ((lsize = ((config1 >> 1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dcpu.c207 unsigned long config0, config1; local
213 config1 = sysreg_read(CONFIG1);
226 tmp = SYSREG_BFEXT(ILSZ, config1);
228 boot_cpu_data.icache.ways = 1 << SYSREG_BFEXT(IASS, config1);
229 boot_cpu_data.icache.sets = 1 << SYSREG_BFEXT(ISET, config1);
232 tmp = SYSREG_BFEXT(DLSZ, config1);
234 boot_cpu_data.dcache.ways = 1 << SYSREG_BFEXT(DASS, config1);
235 boot_cpu_data.dcache.sets = 1 << SYSREG_BFEXT(DSET, config1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dcpu-probe.c518 unsigned int config1; local
520 config1 = read_c0_config1();
522 if (config1 & MIPS_CONF1_MD)
524 if (config1 & MIPS_CONF1_WR)
526 if (config1 & MIPS_CONF1_CA)
528 if (config1 & MIPS_CONF1_EP)
530 if (config1 & MIPS_CONF1_FP) {
535 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
537 return config1 & MIPS_CONF_M;
721 unsigned long config0 = read_c0_config(), config1; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/include/
H A Dmipsinc.h525 static INLINE void icache_probe(uint32 config1, uint *size, uint *lsize) argument
530 if ((lsz = ((config1 & CONF1_IL_MASK) >> CONF1_IL_SHIFT)))
532 sets = CONF1_IS_BASE << ((config1 & CONF1_IS_MASK) >> CONF1_IS_SHIFT);
533 ways = CONF1_IA_BASE + ((config1 & CONF1_IA_MASK) >> CONF1_IA_SHIFT);
538 static INLINE void dcache_probe(uint32 config1, uint *size, uint *lsize) argument
543 if ((lsz = ((config1 & CONF1_DL_MASK) >> CONF1_DL_SHIFT)))
545 sets = CONF1_DS_BASE << ((config1 & CONF1_DS_MASK) >> CONF1_DS_SHIFT);
546 ways = CONF1_DA_BASE + ((config1 & CONF1_DA_MASK) >> CONF1_DA_SHIFT);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/arm/
H A Dether3.c124 ether3_outw(priv(dev)->regs.config1 | CFG1_LOCBUFMEM, REG_CONFIG1);
278 priv(dev)->regs.config1 = CFG1_RECVCOMPSTAT0|CFG1_DMABURST8;
285 ether3_outw(priv(dev)->regs.config1 | CFG1_BUFSELSTAT0, REG_CONFIG1);
290 priv(dev)->regs.config1 |= CFG1_RECVPROMISC;
292 priv(dev)->regs.config1 |= CFG1_RECVSPECBRMULTI;
294 priv(dev)->regs.config1 |= CFG1_RECVSPECBROAD;
301 ether3_outw(priv(dev)->regs.config1 | CFG1_TRANSEND, REG_CONFIG1);
307 ether3_outw(priv(dev)->regs.config1 | CFG1_LOCBUFMEM, REG_CONFIG1);
338 ether3_outw(priv(dev)->regs.config1 | CFG1_BUFSELSTAT0, REG_CONFIG1);
347 ether3_outw(priv(dev)->regs.config1 | CFG1_TRANSEN
[all...]
H A Dether3.h161 unsigned int config1; member in struct:dev_priv::__anon5213
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pcmcia/
H A Dvrc4171_card.c145 uint16_t config1; local
147 config1 = inw(CONFIGURATION1);
148 config1 &= ~SLOTB_CONFIG;
152 config1 |= SLOTB_NONE;
155 config1 |= SLOTB_PCCARD;
158 config1 |= SLOTB_CF;
161 config1 |= SLOTB_FLASHROM;
167 outw(config1, CONFIGURATION1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hwmon/
H A Dadm1026.c292 u8 config1; /* Register value */ member in struct:adm1026_data
360 data->config1 = adm1026_read_value(client, ADM1026_REG_CONFIG1);
366 data->config1);
367 if ((data->config1 & CFG1_MONITOR) == 0) {
371 if (data->config1 & CFG1_INT_ENABLE) {
375 if (data->config1 & CFG1_AIN8_9) {
382 if (data->config1 & CFG1_THERM_HOT) {
441 data->config1 = value;
669 data->config1 = adm1026_read_value(client,
671 if (data->config1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dmac53c94.h31 unsigned char config1; member in struct:mac53c94_regs
161 * Bits in config1 register.
H A DNCR53C9x.h304 unsigned char config1; /* Copy of the 1st config register */ member in struct:NCR_ESP
492 * SCSI reset interrupts in the config1 ESP register.
H A Desp_scsi.h83 * SCSI reset interrupts in the config1 ESP register.
459 u8 config1; member in struct:esp
H A Dmac53c94.c118 writeb(state->host->this_id | CF1_PAR_ENABLE, &regs->config1);
H A Desp_scsi.c255 esp_write8(esp->config1, ESP_CFG1);
2145 esp->config1 = (ESP_CONFIG1_PENABLE | (esp->scsi_id & 7));
2230 esp_write8(esp->config1, ESP_CFG1);
H A DNCR53C9x.c446 esp_write(eregs->esp_cfg1, esp->config1);
522 esp_write(eregs->esp_cfg1, esp->config1);
681 esp->config1 = (ESP_CONFIG1_PENABLE | (esp->scsi_id & 7));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dmin_osl.c63 uint32 config, config1, r2, tmp; local
68 config1 = MFC0(C0_CONFIG, 1);
70 icache_probe(config1, &size, &lsize);
74 dcache_probe(config1, &size, &lsize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_iba6110.c1228 u64 val, config1; local
1243 config1 = ipath_read_kreg64(dd, dd->ipath_kregs->kr_serdesconfig1);
1246 "config1=%llx, sstatus=%llx xgxs %llx\n",
1247 (unsigned long long) val, (unsigned long long) config1,
1323 config1 &= ~0x0ffffffff00ULL;
1325 config1 |= 0x00000000000ULL;
1327 config1 |= 0x0cccc000000ULL;
1328 ipath_write_kreg(dd, dd->ipath_kregs->kr_serdesconfig1, config1);
1331 "config1=%llx, sstatus=%llx xgxs %llx\n",
1332 (unsigned long long) val, (unsigned long long) config1,
[all...]
H A Dipath_iba6120.c602 u64 val, config1, prev_val; local
616 config1 = ipath_read_kreg64(dd, dd->ipath_kregs->kr_serdesconfig1);
618 ipath_cdbg(VERBOSE, "SerDes status config0=%llx config1=%llx, "
620 (unsigned long long) config1, (unsigned long long)
697 config1 &= ~0x0ffffffff00ULL;
699 config1 |= 0x00000000000ULL;
701 config1 |= 0x0cccc000000ULL;
702 ipath_write_kreg(dd, dd->ipath_kregs->kr_serdesconfig1, config1);
705 "config1=%llx, sstatus=%llx xgxs=%llx\n",
706 (unsigned long long) val, (unsigned long long) config1,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dmpc52xx.h65 u32 config1; /* SDRAM + 0x08 */ member in struct:mpc52xx_sdram
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ppc/
H A Dmpc52xx.h195 u32 config1; /* SDRAM + 0x08 */ member in struct:mpc52xx_sdram
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/savage/
H A Dsavagefb_driver.c1842 unsigned char config1, m, n, n1, n2, sr8, cr3f, cr66 = 0, tmp; local
1876 config1 = vga_in8(0x3d5, par); /* get amount of vram installed */
1882 videoRam = RamSavage3D[(config1 & 0xC0) >> 6 ] * 1024;
1899 videoRam = RamSavage4[(config1 & 0xE0) >> 5] * 1024;
1904 videoRam = RamSavageMX[(config1 & 0x0E) >> 1] * 1024;
1908 videoRam = RamSavageNB[(config1 & 0xE0) >> 5] * 1024;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dbnx2.c3216 (flash->config1 & FLASH_BACKUP_STRAP_MASK)) {
3245 REG_WR(bp, BNX2_NVM_CFG1, flash->config1);
H A Dbnx2.h6446 u32 config1; member in struct:flash_spec

Completed in 319 milliseconds