Searched refs:maxsync (Results 1 - 8 of 8) sorted by relevance
/linux-4.1.27/drivers/scsi/aic7xxx/ |
H A D | aic7xxx_core.c | 2221 u_int maxsync; ahc_devlimited_syncrate() local 2226 maxsync = AHC_SYNCRATE_DT; ahc_devlimited_syncrate() 2228 maxsync = AHC_SYNCRATE_ULTRA; ahc_devlimited_syncrate() 2233 maxsync = AHC_SYNCRATE_ULTRA; ahc_devlimited_syncrate() 2235 maxsync = AHC_SYNCRATE_FAST; ahc_devlimited_syncrate() 2253 maxsync = max(maxsync, (u_int)AHC_SYNCRATE_ULTRA2); ahc_devlimited_syncrate() 2262 return (ahc_find_syncrate(ahc, period, ppr_options, maxsync)); ahc_devlimited_syncrate() 2272 u_int *ppr_options, u_int maxsync) ahc_find_syncrate() 2281 && maxsync < AHC_SYNCRATE_ULTRA2) ahc_find_syncrate() 2282 maxsync = AHC_SYNCRATE_ULTRA2; ahc_find_syncrate() 2284 /* Now set the maxsync based on the card capabilities ahc_find_syncrate() 2287 && maxsync < AHC_SYNCRATE_ULTRA) ahc_find_syncrate() 2288 maxsync = AHC_SYNCRATE_ULTRA; ahc_find_syncrate() 2290 && maxsync < AHC_SYNCRATE_FAST) ahc_find_syncrate() 2291 maxsync = AHC_SYNCRATE_FAST; ahc_find_syncrate() 2293 for (syncrate = &ahc_syncrates[maxsync]; ahc_find_syncrate() 2317 if (syncrate == &ahc_syncrates[maxsync]) ahc_find_syncrate() 2347 ahc_find_period(struct ahc_softc *ahc, u_int scsirate, u_int maxsync) ahc_find_period() argument 2356 /* now set maxsync based on card capabilities */ ahc_find_period() 2357 if ((ahc->features & AHC_DT) == 0 && maxsync < AHC_SYNCRATE_ULTRA2) ahc_find_period() 2358 maxsync = AHC_SYNCRATE_ULTRA2; ahc_find_period() 2360 && maxsync < AHC_SYNCRATE_ULTRA) ahc_find_period() 2361 maxsync = AHC_SYNCRATE_ULTRA; ahc_find_period() 2363 && maxsync < AHC_SYNCRATE_FAST) ahc_find_period() 2364 maxsync = AHC_SYNCRATE_FAST; ahc_find_period() 2367 syncrate = &ahc_syncrates[maxsync]; ahc_find_period() 5522 u_int maxsync; ahc_init() local 5539 maxsync = AHC_SYNCRATE_ULTRA2; ahc_init() 5541 maxsync = AHC_SYNCRATE_DT; ahc_init() 5543 ahc_find_period(ahc, scsirate, maxsync); ahc_init() 2271 ahc_find_syncrate(struct ahc_softc *ahc, u_int *period, u_int *ppr_options, u_int maxsync) ahc_find_syncrate() argument
|
H A D | aic7xxx.h | 1206 u_int *ppr_options, u_int maxsync); 1208 u_int scsirate, u_int maxsync);
|
H A D | aic7xxx_osm.c | 587 int maxsync = AHC_SYNCRATE_DT; ahc_linux_target_alloc() local 607 maxsync = ultra ? AHC_SYNCRATE_ULTRA : ahc_linux_target_alloc() 614 ahc_find_period(ahc, scsirate, maxsync); ahc_linux_target_alloc()
|
H A D | aic79xx_core.c | 3702 u_int maxsync; ahd_devlimited_syncrate() local 3706 maxsync = AHD_SYNCRATE_PACED; ahd_devlimited_syncrate() 3708 maxsync = AHD_SYNCRATE_ULTRA; ahd_devlimited_syncrate() 3728 maxsync = max(maxsync, (u_int)AHD_SYNCRATE_ULTRA2); ahd_devlimited_syncrate() 3736 ahd_find_syncrate(ahd, period, ppr_options, maxsync); ahd_devlimited_syncrate() 3747 u_int *ppr_options, u_int maxsync) ahd_find_syncrate() 3749 if (*period < maxsync) ahd_find_syncrate() 3750 *period = maxsync; ahd_find_syncrate() 3746 ahd_find_syncrate(struct ahd_softc *ahd, u_int *period, u_int *ppr_options, u_int maxsync) ahd_find_syncrate() argument
|
H A D | aic79xx.h | 1402 u_int *ppr_options, u_int maxsync);
|
/linux-4.1.27/drivers/scsi/sym53c8xx_2/ |
H A D | sym_hipd.h | 928 u_char maxsync; /* Max sync period factor (ST) */ member in struct:sym_hcb
|
H A D | sym_hipd.c | 763 np->maxsync = period > 2540 ? 254 : period / 10; sym_prepare_setting() 1407 if (goal->period > np->maxsync) sym_check_goals() 1408 goal->period = np->maxsync; sym_check_goals()
|
/linux-4.1.27/drivers/scsi/ |
H A D | ncr53c8xx.c | 1690 u_char maxsync; /* Maximum sync period factor */ member in struct:ncb 3832 np->maxsync = period > 2540 ? 254 : period / 10; ncr_prepare_setting() 5332 if (tp->usrsync <= np->maxsync) { ncr_init() 5395 if (minsync > np->maxsync) ncr_negotiate() 8544 if (period > np->maxsync) ncr53c8xx_set_period() 8545 period = np->maxsync; ncr53c8xx_set_period()
|
Completed in 275 milliseconds