Home | History | Annotate | Download | only in ic

Lines Matching defs:cfg_lsw

338 	u_int16_t       cfg_msw, cfg_lsw;
365 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh);
381 if (eep_config->cfg_lsw != cfg_lsw) {
383 eep_config->cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh);
392 eep_config->cfg_lsw |= ASC_CFG0_HOST_INT_ON;
815 u_int16_t cfg_lsw;
820 cfg_lsw = ASC_GET_CHIP_SCSI_ID(iot, ioh);
821 cfg_lsw &= 0xF8FF;
822 cfg_lsw |= (new_id & ASC_MAX_TID) << 8;
823 ASC_SET_CHIP_CFG_LSW(iot, ioh, cfg_lsw);
1412 printf("cfg_lsw = 0x%x\n", eep_config->cfg_lsw);
1893 u_int16_t cfg_lsw;
1899 cfg_lsw = AscGetEisaChipCfg(iot, ioh);
1900 chip_irq = ((cfg_lsw >> 8) & 0x07) + 10;
1907 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh);
1908 chip_irq = (cfg_lsw >> 2) & 0x07;
1916 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh);
1917 chip_irq = (cfg_lsw >> 2) & 0x03;
1928 u_int16_t cfg_lsw;
1939 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh) & 0xFFE3;
1940 cfg_lsw |= 0x0010;
1941 ASC_SET_CHIP_CFG_LSW(iot, ioh, cfg_lsw);
1943 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh) & 0xFFE0;
1944 cfg_lsw |= (irq_no & 0x07) << 2;
1945 ASC_SET_CHIP_CFG_LSW(iot, ioh, cfg_lsw);
1954 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh) & 0xFFF3;
1955 cfg_lsw |= (irq_no & 0x03) << 2;
1956 ASC_SET_CHIP_CFG_LSW(iot, ioh, cfg_lsw);
2025 u_int16_t cfg_lsw;
2033 cfg_lsw = ASC_GET_CHIP_CFG_LSW(iot, ioh) & 0xFFFC;
2034 cfg_lsw |= value;
2035 ASC_SET_CHIP_CFG_LSW(iot, ioh, cfg_lsw);