⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hc_isp116x.c

📁 飞利浦isp1161 arm-linux驱动源码
💻 C
📖 第 1 页 / 共 2 页
字号:
				hp->tlp = 0;				hci->td_array = &hci->a_td_array;				sh_done_list (hci);			}			hp->tlp = 0;		}	}	if (!hci->td_array->len)		sh_del_list (hci);	hci->td_array = &hci->a_td_array;	bstat = READ_REG16 (hci, HcBufferStatus);	if (hci->td_array->len == 0 && !(bstat & ATLBufferFull)) {		hp->units_left = hp->atl_buffer_len;		hp->tlp = 0;		sh_schedule_trans (hci);		hc_mark_last_trans (hci);		hp->atl_len = hp->tlp;		if (hp->atl_len > 0) {			WRITE_REG16 (hci, hp->atl_len, HcTransferCounter);			WRITE_REGn16 (hci, HcATLBufferPort, hp->atl_len, hp->tl);					}			}/*#ifdef CONFIG_ARCH_SITSANG	SITSANG_BIPR_RW = SITSANG_BIPR_USB_HC_IRQ;        SITSANG_BIMR_RW |= SITSANG_BIMR_USB_HC_IRQ; #endif*/}/*-------------------------------------------------------------------------* * HC functions *-------------------------------------------------------------------------*//* reset the HC and BUS */static int hc_reset (hci_t * hci){	int timeout = 30;	 		/* Disable HC interrupts */	WRITE_REG32 (hci, OHCI_INTR_MIE, HcInterruptDisable);	dbg ("USB HC reset_hc usb-: ctrl = 0x%x ;",		READ_REG32 (hci, HcControl));  	/* Reset USB (needed by some controllers) */	WRITE_REG32 (hci, 0, HcControl);  	WRITE_REG0 (hci, HcSoftwareReset);    		/* HC Reset requires max 10 us delay */	WRITE_REG32 (hci, OHCI_HCR, HcCommandStatus);	while ((READ_REG32 (hci, HcCommandStatus) & OHCI_HCR) != 0) {		if (--timeout == 0) {			err ("USB HC reset timed out!");			return -1;		}			udelay (1);	}	 	return 0;}/*-------------------------------------------------------------------------*//* Start an host controller, set the BUS operational * enable interrupts  * connect the virtual root hub */static int hc_alloc_trans_buffer (hci_t * hci){	hcipriv_t * hp = &hci->hp; 	int maxlen;	hp->itl0_len = 0;	hp->itl1_len = 0;	hp->atl_len = 0;	hp->itl_buffer_len = 1024;	hp->atl_buffer_len = 4096 - 2 * hp->itl_buffer_len; /* 2048 */	WRITE_REG16 (hci, hp->itl_buffer_len, HcITLBufferLength);	WRITE_REG16 (hci, hp->atl_buffer_len, HcATLBufferLength); 	WRITE_REG16 (hci, 		InterruptPinEnable |		InterruptPinTrigger |		InterruptOutputPolarity | 		DataBusWidth16 | 		AnalogOCEnable, 		HcHardwareConfiguration);	WRITE_REG16 (hci, 0, HcDMAConfiguration);	maxlen = (hp->itl_buffer_len > hp->atl_buffer_len) ? hp->itl_buffer_len : hp->atl_buffer_len;	hp->tl = kmalloc (maxlen, GFP_KERNEL);		if (!hp->tl)		return -ENOMEM;	memset (hp->tl, 0, maxlen);	return 0;}	static int hc_start (hci_t * hci){       int uData;	hcipriv_t * hp = &hci->hp;   	__u32 mask;  	unsigned int fminterval;  	fminterval = 0x2edf;	fminterval |= ((((fminterval - 210) * 6) / 7) << 16); 	WRITE_REG32 (hci, fminterval, HcFmInterval);		WRITE_REG32 (hci, 0x628, HcLSThreshold);	/*start the usb as operational*/	hp->hc_control = OHCI_USB_OPER;	WRITE_REG32 (hci, hp->hc_control, HcControl);		/* Choose the interrupts we care about now, others later on demand */	mask = OHCI_INTR_MIE | 	OHCI_INTR_SO | 	OHCI_INTR_SF;	WRITE_REG32 (hci, mask, HcInterruptEnable);	WRITE_REG32 (hci, mask, HcInterruptStatus);	mask = SOFITLInt | ATLInt | OPR_Reg;#ifdef HC_SWITCH_INT	mask = 0;#endif	WRITE_REG16 (hci, mask, HcuPInterrupt); 	WRITE_REG16 (hci, mask, HcuPInterruptEnable);        //Use NPS according to Philip ISA-USB driver demo ,11/20/2002	uData = READ_REG32(hci,HcRhDescriptorA);	uData &= ~RH_A_POTPGT;	uData |= RH_A_NPS;	uData &= ~RH_A_PSM;	uData |= ((50/2)<<24);	WRITE_REG32 (hci,uData,HcRhDescriptorA);	WRITE_REG32 (hci, RH_HS_LPSC, HcRhStatus);	// POTPGT delay is bits 24-31, in 2 ms units.	mdelay ((READ_REG32 (hci, HcRhDescriptorA) >> 23) & 0x1fe); 	rh_connect_rh (hci);		return 0;}/*-------------------------------------------------------------------------*//* allocate HCI */static hci_t * __devinit hc_alloc_hci (void){	hci_t * hci;	hcipriv_t * hp; 		struct usb_bus * bus;	hci = (hci_t *) kmalloc (sizeof (hci_t), GFP_KERNEL);	if (!hci)		return NULL;	memset (hci, 0, sizeof (hci_t));	hp = &hci->hp;		hp->irq = -1;	hp->hcport = -1; 	hci->a_td_array.len = 0; 	hci->i_td_array[0].len = 0; 	hci->i_td_array[1].len = 0; 	hci->td_array = &hci->a_td_array; 	hci->active_urbs = 0; 	INIT_LIST_HEAD (&hci->hci_hcd_list);	list_add (&hci->hci_hcd_list, &hci_hcd_list);	init_waitqueue_head (&hci->waitq);	INIT_LIST_HEAD (&hci->ctrl_list);	INIT_LIST_HEAD (&hci->bulk_list);	INIT_LIST_HEAD (&hci->iso_list);	INIT_LIST_HEAD (&hci->intr_list);	INIT_LIST_HEAD (&hci->del_list);	bus = usb_alloc_bus (&hci_device_operations);	if (!bus) {		kfree (hci);		return NULL;	}	hci->bus = bus;	bus->hcpriv = (void *) hci;	return hci;} /*-------------------------------------------------------------------------*//* De-allocate all resources.. */static void hc_release_hci (hci_t * hci){		hcipriv_t * hp = &hci->hp; 	dbg ("USB HC release hci %d", hci->regs);	/* disconnect all devices */    	if (hci->bus->root_hub)		usb_disconnect (&hci->bus->root_hub);	if (hp->hcport > 0) {		WRITE_REG16 (hci, 0, HcHardwareConfiguration);		WRITE_REG16 (hci, 0, HcDMAConfiguration);		WRITE_REG16 (hci, 0, HcuPInterruptEnable);	}//	if (!hci->disabled)		hc_reset (hci);		if (hp->tl)		kfree (hp->tl); 	if (hp->hcport > 0) {		release_region (hp->hcport, 2);		hp->hcport = 0;	}	if (hp->hcport2 > 0) {		release_region (hp->hcport2, 2);		hp->hcport2 = 0;	}	if (hp->irq >= 0) {		free_irq (hp->irq, hci);		hp->irq = -1;	}	if (hci->bus->busnum >= 0)		usb_deregister_bus (hci->bus);	usb_free_bus (hci->bus);	list_del (&hci->hci_hcd_list);	INIT_LIST_HEAD (&hci->hci_hcd_list);       	kfree (hci);}/*-------------------------------------------------------------------------*//* Increment the module usage count, start the control thread and * return success. */static int __devinit hc_found_hci (int addr, int addr2, int irq, int dma){	int hcfs;	hci_t * hci;	hcipriv_t * hp;     	hci = hc_alloc_hci ();	if (!hci) {		return -ENOMEM;	}	hp = &hci->hp;	if (!request_region (addr, 2, "ISP116x USB HOST")) {		err ("request address %d-%d failed", addr, addr+4);		hc_release_hci (hci);		return -EBUSY;		}	hp->hcport = addr;	if (!request_region (addr2, 2, "ISP116x USB HOST")) {		err ("request address %d-%d failed", addr, addr+4);		hc_release_hci (hci);		return -EBUSY;		}	hp->hcport2 = addr2;	if ((READ_REG16(hci, HcChipID) & 0xff00) != 0x6100) {		hc_release_hci (hci);		return -ENODEV;	}	if (hc_reset (hci) < 0) {		hc_release_hci (hci);		return -ENODEV;	}	if (hc_alloc_trans_buffer (hci)) {		hc_release_hci (hci);		return -ENOMEM;	}	printk(KERN_INFO __FILE__ ": USB ISP116x at %x/%x,IRQ %d Rev. %x ChipID: %x\n",		                addr, addr2, irq, READ_REG32(hci, HcRevision), READ_REG16(hci, HcChipID));		/* FIXME this is a second HC reset; why?? */	WRITE_REG32 (hci, hp->hc_control = OHCI_USB_RESET, HcControl);	wait_ms (1000);	        usb_register_bus (hci->bus);		if (request_irq (irq, hc_interrupt,SA_SHIRQ,"ISP116x", hci) != 0) {		err ("request interrupt %d failed", irq);		hc_release_hci (hci);		return -EBUSY;	}	hp->irq = irq;	if (hc_start (hci) < 0) {		err ("can't start usb-%x", addr);		hc_release_hci (hci);		return -EBUSY;	}/*        	//Enable USB_HC irq report	SITSANG_BIPR_RW = SITSANG_BIPR_USB_HC_IRQ;	SITSANG_BIMR_RW |= SITSANG_BIMR_USB_HC_IRQ;*/	return 0;}/*-------------------------------------------------------------------------*/static int __init hci_hcd_init (void) {	int ret;#ifdef CONFIG_ARCH_SITSANG	unsigned int irq_gpio_pin = 0;        irq_gpio_pin = IRQ_TO_GPIO_2_80(SITSANG_USB_HC_IRQ);        GPDR(irq_gpio_pin) &= ~GPIO_bit(irq_gpio_pin);	set_GPIO_IRQ_edge(irq_gpio_pin, GPIO_RISING_EDGE);/*		    	SITSANG_PCR_RW |= SITSANG_PCR_USB_HOST_ON | SITSANG_PCR_PER_ON;							SITSANG_BCR_RW |= SITSANG_BCR_BUS_OPEN | SITSANG_BCR_USB_NDP;	SITSANG_BCR_RW |= SITSANG_BCR_USB_HC_RESET;		mdelay(500);*/					/*Reset the CHIP*///	SITSANG_BCR_RW &= ~(SITSANG_BCR_USB_HC_RESET);//	mdelay(500);        MSC2 &= 0xffff0000;        MSC2 |= 0x0000fbc9;#endif		ret = hc_found_hci (hcport, hcport2, irq, 0);	return ret;}/*-------------------------------------------------------------------------*/static void __exit hci_hcd_cleanup (void) {	struct list_head *  hci_l;	hci_t * hci;	for (hci_l = hci_hcd_list.next; hci_l != &hci_hcd_list;) {		hci = list_entry (hci_l, hci_t, hci_hcd_list);		hci_l = hci_l->next;		hc_release_hci(hci);	}/*#ifdef CONFIG_ARCH_SITSANG        SITSANG_BIMR_RW &= ~SITSANG_BIMR_USB_HC_IRQ; 	SITSANG_PCR_RW &= ~SITSANG_PCR_USB_HOST_ON;#endif	*/}module_init (hci_hcd_init);module_exit (hci_hcd_cleanup);MODULE_AUTHOR ("Roman Weissgaerber <weissg@vienna.at>");MODULE_DESCRIPTION ("USB ISP116x Host Controller Driver");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -