Lines Matching full:setup

636 /* setup & interrupt */
733 struct Scsi_Host *aha152x_probe_one(struct aha152x_setup *setup) in aha152x_probe_one() argument
750 shpnt->io_port = setup->io_port; in aha152x_probe_one()
752 shpnt->irq = setup->irq; in aha152x_probe_one()
754 if (!setup->tc1550) { in aha152x_probe_one()
755 HOSTIOPORT0 = setup->io_port; in aha152x_probe_one()
756 HOSTIOPORT1 = setup->io_port; in aha152x_probe_one()
758 HOSTIOPORT0 = setup->io_port+0x10; in aha152x_probe_one()
759 HOSTIOPORT1 = setup->io_port-0x10; in aha152x_probe_one()
763 RECONNECT = setup->reconnect; in aha152x_probe_one()
764 SYNCHRONOUS = setup->synchronous; in aha152x_probe_one()
765 PARITY = setup->parity; in aha152x_probe_one()
766 DELAY = setup->delay; in aha152x_probe_one()
767 EXT_TRANS = setup->ext_trans; in aha152x_probe_one()
769 SETPORT(SCSIID, setup->scsiid << 4); in aha152x_probe_one()
770 shpnt->this_id = setup->scsiid; in aha152x_probe_one()
772 if (setup->reconnect) in aha152x_probe_one()
795 shpnt->host_no, setup->tc1550 ? " (tc1550 mode)" : "", in aha152x_probe_one()
891 * setup controller to generate interrupts depending
926 * Queue a command and setup interrupts for a free bus.
956 /* setup scratch area in aha152x_internal_queue()
2416 * setup controller to interrupt on in is_complete()
2964 static struct aha152x_setup setup[2]; variable
3061 static int checksetup(struct aha152x_setup *setup) in checksetup() argument
3064 for (i = 0; i < ARRAY_SIZE(ports) && (setup->io_port != ports[i]); i++) in checksetup()
3070 if (!request_region(setup->io_port, IO_RANGE, "aha152x")) { in checksetup()
3071 printk(KERN_ERR "aha152x: io port 0x%x busy.\n", setup->io_port); in checksetup()
3075 if( aha152x_porttest(setup->io_port) ) { in checksetup()
3076 setup->tc1550=0; in checksetup()
3077 } else if( tc1550_porttest(setup->io_port) ) { in checksetup()
3078 setup->tc1550=1; in checksetup()
3080 release_region(setup->io_port, IO_RANGE); in checksetup()
3084 release_region(setup->io_port, IO_RANGE); in checksetup()
3086 if ((setup->irq < IRQ_MIN) || (setup->irq > IRQ_MAX)) in checksetup()
3089 if ((setup->scsiid < 0) || (setup->scsiid > 7)) in checksetup()
3092 if ((setup->reconnect < 0) || (setup->reconnect > 1)) in checksetup()
3095 if ((setup->parity < 0) || (setup->parity > 1)) in checksetup()
3098 if ((setup->synchronous < 0) || (setup->synchronous > 1)) in checksetup()
3101 if ((setup->ext_trans < 0) || (setup->ext_trans > 1)) in checksetup()
3123 if (!checksetup(&setup[i])) { in aha152x_init()
3124 printk(KERN_ERR "\naha152x: %s\n", setup[i].conf); in aha152x_init()
3132 if (setup_count < ARRAY_SIZE(setup)) { in aha152x_init()
3135 if (setup_count == 0 || (override.io_port != setup[0].io_port)) { in aha152x_init()
3147 setup[setup_count++] = override; in aha152x_init()
3153 if (setup_count < ARRAY_SIZE(setup)) { in aha152x_init()
3156 if (setup_count == 0 || (override.io_port != setup[0].io_port)) { in aha152x_init()
3168 setup[setup_count++] = override; in aha152x_init()
3174 if (setup_count<ARRAY_SIZE(setup) && (aha152x[0]!=0 || io[0]!=0 || irq[0]!=0)) { in aha152x_init()
3176 setup[setup_count].conf = ""; in aha152x_init()
3177 setup[setup_count].io_port = aha152x[0]; in aha152x_init()
3178 setup[setup_count].irq = aha152x[1]; in aha152x_init()
3179 setup[setup_count].scsiid = aha152x[2]; in aha152x_init()
3180 setup[setup_count].reconnect = aha152x[3]; in aha152x_init()
3181 setup[setup_count].parity = aha152x[4]; in aha152x_init()
3182 setup[setup_count].synchronous = aha152x[5]; in aha152x_init()
3183 setup[setup_count].delay = aha152x[6]; in aha152x_init()
3184 setup[setup_count].ext_trans = aha152x[7]; in aha152x_init()
3186 if(io[0]!=0) setup[setup_count].io_port = io[0]; in aha152x_init()
3187 if(irq[0]!=0) setup[setup_count].irq = irq[0]; in aha152x_init()
3189 setup[setup_count].scsiid = scsiid[0]; in aha152x_init()
3190 setup[setup_count].reconnect = reconnect[0]; in aha152x_init()
3191 setup[setup_count].parity = parity[0]; in aha152x_init()
3192 setup[setup_count].synchronous = sync[0]; in aha152x_init()
3193 setup[setup_count].delay = delay[0]; in aha152x_init()
3194 setup[setup_count].ext_trans = exttrans[0]; in aha152x_init()
3197 if (checksetup(&setup[setup_count])) in aha152x_init()
3201 setup[setup_count].io_port, in aha152x_init()
3202 setup[setup_count].irq, in aha152x_init()
3203 setup[setup_count].scsiid, in aha152x_init()
3204 setup[setup_count].reconnect, in aha152x_init()
3205 setup[setup_count].parity, in aha152x_init()
3206 setup[setup_count].synchronous, in aha152x_init()
3207 setup[setup_count].delay, in aha152x_init()
3208 setup[setup_count].ext_trans); in aha152x_init()
3211 if (setup_count<ARRAY_SIZE(setup) && (aha152x1[0]!=0 || io[1]!=0 || irq[1]!=0)) { in aha152x_init()
3213 setup[setup_count].conf = ""; in aha152x_init()
3214 setup[setup_count].io_port = aha152x1[0]; in aha152x_init()
3215 setup[setup_count].irq = aha152x1[1]; in aha152x_init()
3216 setup[setup_count].scsiid = aha152x1[2]; in aha152x_init()
3217 setup[setup_count].reconnect = aha152x1[3]; in aha152x_init()
3218 setup[setup_count].parity = aha152x1[4]; in aha152x_init()
3219 setup[setup_count].synchronous = aha152x1[5]; in aha152x_init()
3220 setup[setup_count].delay = aha152x1[6]; in aha152x_init()
3221 setup[setup_count].ext_trans = aha152x1[7]; in aha152x_init()
3223 if(io[1]!=0) setup[setup_count].io_port = io[1]; in aha152x_init()
3224 if(irq[1]!=0) setup[setup_count].irq = irq[1]; in aha152x_init()
3226 setup[setup_count].scsiid = scsiid[1]; in aha152x_init()
3227 setup[setup_count].reconnect = reconnect[1]; in aha152x_init()
3228 setup[setup_count].parity = parity[1]; in aha152x_init()
3229 setup[setup_count].synchronous = sync[1]; in aha152x_init()
3230 setup[setup_count].delay = delay[1]; in aha152x_init()
3231 setup[setup_count].ext_trans = exttrans[1]; in aha152x_init()
3233 if (checksetup(&setup[setup_count])) in aha152x_init()
3237 setup[setup_count].io_port, in aha152x_init()
3238 setup[setup_count].irq, in aha152x_init()
3239 setup[setup_count].scsiid, in aha152x_init()
3240 setup[setup_count].reconnect, in aha152x_init()
3241 setup[setup_count].parity, in aha152x_init()
3242 setup[setup_count].synchronous, in aha152x_init()
3243 setup[setup_count].delay, in aha152x_init()
3244 setup[setup_count].ext_trans); in aha152x_init()
3249 for(i=0; setup_count<ARRAY_SIZE(setup) && id_table[i].vendor; i++) { in aha152x_init()
3250 while ( setup_count<ARRAY_SIZE(setup) && in aha152x_init()
3265 if (setup_count==1 && pnp_port_start(dev, 0)==setup[0].io_port) { in aha152x_init()
3270 setup[setup_count].io_port = pnp_port_start(dev, 0); in aha152x_init()
3271 setup[setup_count].irq = pnp_irq(dev, 0); in aha152x_init()
3272 setup[setup_count].scsiid = 7; in aha152x_init()
3273 setup[setup_count].reconnect = 1; in aha152x_init()
3274 setup[setup_count].parity = 1; in aha152x_init()
3275 setup[setup_count].synchronous = 1; in aha152x_init()
3276 setup[setup_count].delay = DELAY_DEFAULT; in aha152x_init()
3277 setup[setup_count].ext_trans = 0; in aha152x_init()
3283 setup[setup_count].io_port, setup[setup_count].irq); in aha152x_init()
3290 if (setup_count<ARRAY_SIZE(setup)) { in aha152x_init()
3312 if ((setup_count == 1) && (setup[0].io_port == ports[i])) in aha152x_init()
3321 setup[setup_count].tc1550 = 0; in aha152x_init()
3326 setup[setup_count].tc1550 = 1; in aha152x_init()
3338 setup[setup_count].io_port = ports[i]; in aha152x_init()
3339 setup[setup_count].irq = IRQ_MIN + conf.cf_irq; in aha152x_init()
3340 setup[setup_count].scsiid = conf.cf_id; in aha152x_init()
3341 setup[setup_count].reconnect = conf.cf_tardisc; in aha152x_init()
3342 setup[setup_count].parity = !conf.cf_parity; in aha152x_init()
3343 setup[setup_count].synchronous = conf.cf_syncneg; in aha152x_init()
3344 setup[setup_count].delay = DELAY_DEFAULT; in aha152x_init()
3345 setup[setup_count].ext_trans = 0; in aha152x_init()
3358 if ( request_region(setup[i].io_port, IO_RANGE, "aha152x") ) { in aha152x_init()
3359 struct Scsi_Host *shpnt = aha152x_probe_one(&setup[i]); in aha152x_init()
3362 release_region(setup[i].io_port, IO_RANGE); in aha152x_init()
3370 printk(KERN_ERR "aha152x: io port 0x%x busy.\n", setup[i].io_port); in aha152x_init()
3403 if(setup_count>=ARRAY_SIZE(setup)) { in aha152x_setup()
3408 setup[setup_count].conf = str; in aha152x_setup()
3409 setup[setup_count].io_port = ints[0] >= 1 ? ints[1] : 0x340; in aha152x_setup()
3410 setup[setup_count].irq = ints[0] >= 2 ? ints[2] : 11; in aha152x_setup()
3411 setup[setup_count].scsiid = ints[0] >= 3 ? ints[3] : 7; in aha152x_setup()
3412 setup[setup_count].reconnect = ints[0] >= 4 ? ints[4] : 1; in aha152x_setup()
3413 setup[setup_count].parity = ints[0] >= 5 ? ints[5] : 1; in aha152x_setup()
3414 setup[setup_count].synchronous = ints[0] >= 6 ? ints[6] : 1; in aha152x_setup()
3415 setup[setup_count].delay = ints[0] >= 7 ? ints[7] : DELAY_DEFAULT; in aha152x_setup()
3416 setup[setup_count].ext_trans = ints[0] >= 8 ? ints[8] : 0; in aha152x_setup()