diff options
Diffstat (limited to 'drivers/usb')
| -rw-r--r-- | drivers/usb/sl811_usb.c | 4 | ||||
| -rw-r--r-- | drivers/usb/usb_ohci.c | 30 | ||||
| -rw-r--r-- | drivers/usb/usb_ohci.h | 6 | ||||
| -rw-r--r-- | drivers/usb/usbdcore_mpc8xx.c | 20 | 
4 files changed, 30 insertions, 30 deletions
| diff --git a/drivers/usb/sl811_usb.c b/drivers/usb/sl811_usb.c index 159cc2527..48f1ee95f 100644 --- a/drivers/usb/sl811_usb.c +++ b/drivers/usb/sl811_usb.c @@ -111,7 +111,7 @@ static void inline sl811_write_buf(__u8 offset, __u8 *buf, __u8 size)  int usb_init_kup4x (void)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile memctl8xx_t *memctl = &immap->im_memctl;  	int i;  	unsigned char tmp; @@ -265,7 +265,7 @@ static int sl811_send_packet(struct usb_device *dev, unsigned long pipe, __u8 *b  		sl811_write(SL811_CTRL_A, ctrl);  		while (!(sl811_read(SL811_INTRSTS) & SL811_INTR_DONE_A)) { -			if (5*CFG_HZ < get_timer(time_start)) { +			if (5*CONFIG_SYS_HZ < get_timer(time_start)) {  				printf("USB transmit timed out\n");  				return -USB_ST_CRC_ERR;  			} diff --git a/drivers/usb/usb_ohci.c b/drivers/usb/usb_ohci.c index da11ecbc0..c1aac3382 100644 --- a/drivers/usb/usb_ohci.c +++ b/drivers/usb/usb_ohci.c @@ -73,7 +73,7 @@      defined(CONFIG_440EP) || \      defined(CONFIG_PCI_OHCI) || \      defined(CONFIG_MPC5200) || \ -    defined(CFG_OHCI_USE_NPS) +    defined(CONFIG_SYS_OHCI_USE_NPS)  # define OHCI_USE_NPS		/* force NoPowerSwitching mode */  #endif @@ -89,13 +89,13 @@  /*   * e.g. PCI controllers need this   */ -#ifdef CFG_OHCI_SWAP_REG_ACCESS +#ifdef CONFIG_SYS_OHCI_SWAP_REG_ACCESS  # define readl(a) __swap_32(*((volatile u32 *)(a)))  # define writel(a, b) (*((volatile u32 *)(b)) = __swap_32((volatile u32)a))  #else  # define readl(a) (*((volatile u32 *)(a)))  # define writel(a, b) (*((volatile u32 *)(b)) = ((volatile u32)a)) -#endif /* CFG_OHCI_SWAP_REG_ACCESS */ +#endif /* CONFIG_SYS_OHCI_SWAP_REG_ACCESS */  #define min_t(type,x,y) ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) @@ -129,13 +129,13 @@ static struct pci_device_id ehci_pci_ids[] = {  #define info(format, arg...) do {} while(0)  #endif -#ifdef CFG_OHCI_BE_CONTROLLER +#ifdef CONFIG_SYS_OHCI_BE_CONTROLLER  # define m16_swap(x) cpu_to_be16(x)  # define m32_swap(x) cpu_to_be32(x)  #else  # define m16_swap(x) cpu_to_le16(x)  # define m32_swap(x) cpu_to_le32(x) -#endif /* CFG_OHCI_BE_CONTROLLER */ +#endif /* CONFIG_SYS_OHCI_BE_CONTROLLER */  /* global ohci_t */  static ohci_t gohci; @@ -1819,13 +1819,13 @@ int usb_lowlevel_init(void)  	pci_dev_t pdev;  #endif -#ifdef CFG_USB_OHCI_CPU_INIT +#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT  	/* cpu dependant init */  	if(usb_cpu_init())  		return -1;  #endif -#ifdef CFG_USB_OHCI_BOARD_INIT +#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT  	/*  board dependant init */  	if(usb_board_init())  		return -1; @@ -1873,21 +1873,21 @@ int usb_lowlevel_init(void)  	} else  		return -1;  #else -	gohci.regs = (struct ohci_regs *)CFG_USB_OHCI_REGS_BASE; +	gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE;  #endif  	gohci.flags = 0; -	gohci.slot_name = CFG_USB_OHCI_SLOT_NAME; +	gohci.slot_name = CONFIG_SYS_USB_OHCI_SLOT_NAME;  	if (hc_reset (&gohci) < 0) {  		hc_release_ohci (&gohci);  		err ("can't reset usb-%s", gohci.slot_name); -#ifdef CFG_USB_OHCI_BOARD_INIT +#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT  		/* board dependant cleanup */  		usb_board_init_fail();  #endif -#ifdef CFG_USB_OHCI_CPU_INIT +#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT  		/* cpu dependant cleanup */  		usb_cpu_init_fail();  #endif @@ -1901,12 +1901,12 @@ int usb_lowlevel_init(void)  		err ("can't start usb-%s", gohci.slot_name);  		hc_release_ohci (&gohci);  		/* Initialization failed */ -#ifdef CFG_USB_OHCI_BOARD_INIT +#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT  		/* board dependant cleanup */  		usb_board_stop();  #endif -#ifdef CFG_USB_OHCI_CPU_INIT +#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT  		/* cpu dependant cleanup */  		usb_cpu_stop();  #endif @@ -1932,13 +1932,13 @@ int usb_lowlevel_stop(void)  	/* call hc_release_ohci() here ? */  	hc_reset (&gohci); -#ifdef CFG_USB_OHCI_BOARD_INIT +#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT  	/* board dependant cleanup */  	if(usb_board_stop())  		return -1;  #endif -#ifdef CFG_USB_OHCI_CPU_INIT +#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT  	/* cpu dependant cleanup */  	if(usb_cpu_stop())  		return -1; diff --git a/drivers/usb/usb_ohci.h b/drivers/usb/usb_ohci.h index 7a04bf5e8..c1af547fa 100644 --- a/drivers/usb/usb_ohci.h +++ b/drivers/usb/usb_ohci.h @@ -155,8 +155,8 @@ struct ohci_hcca {  /*   * Maximum number of root hub ports.   */ -#ifndef CFG_USB_OHCI_MAX_ROOT_PORTS -# error "CFG_USB_OHCI_MAX_ROOT_PORTS undefined!" +#ifndef CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS +# error "CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS undefined!"  #endif  /* @@ -191,7 +191,7 @@ struct ohci_regs {  		__u32	a;  		__u32	b;  		__u32	status; -		__u32	portstatus[CFG_USB_OHCI_MAX_ROOT_PORTS]; +		__u32	portstatus[CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS];  	} roothub;  } __attribute((aligned(32))); diff --git a/drivers/usb/usbdcore_mpc8xx.c b/drivers/usb/usbdcore_mpc8xx.c index 122793c02..fa02003d1 100644 --- a/drivers/usb/usbdcore_mpc8xx.c +++ b/drivers/usb/usbdcore_mpc8xx.c @@ -133,7 +133,7 @@ static void mpc8xx_udc_advance_rx (volatile cbd_t ** rx_cbdp, int epid);  int udc_init (void)  {  	/* Init various pointers */ -	immr = (immap_t *) CFG_IMMR; +	immr = (immap_t *) CONFIG_SYS_IMMR;  	cp = (cpm8xx_t *) & (immr->im_cpm);  	usb_paramp = (usb_pram_t *) & (cp->cp_dparam[PROFF_USB]);  	usbp = (usb_t *) & (cp->cp_scc[0]); @@ -752,7 +752,7 @@ static short mpc8xx_udc_handle_txerr ()  static void mpc8xx_udc_advance_rx (volatile cbd_t ** rx_cbdp, int epid)  {  	if ((*rx_cbdp)->cbd_sc & RX_BD_W) { -		*rx_cbdp = (volatile cbd_t *) (endpoints[epid]->rbase + CFG_IMMR); +		*rx_cbdp = (volatile cbd_t *) (endpoints[epid]->rbase + CONFIG_SYS_IMMR);  	} else {  		(*rx_cbdp)++; @@ -780,7 +780,7 @@ static void mpc8xx_udc_flush_tx_fifo (int epid)  	usbp->uscom = 0x40 | 0;  	/* reset ring */ -	tx_cbdp = (cbd_t *) (endpoints[epid]->tbptr + CFG_IMMR); +	tx_cbdp = (cbd_t *) (endpoints[epid]->tbptr + CONFIG_SYS_IMMR);  	tx_cbdp->cbd_sc = (TX_BD_I | TX_BD_W); @@ -886,7 +886,7 @@ static int mpc8xx_udc_ep_tx (struct usb_endpoint_instance *epi)  	}  	ep = epi->endpoint_address & 0x03; -	tx_cbdp = (cbd_t *) (endpoints[ep]->tbptr + CFG_IMMR); +	tx_cbdp = (cbd_t *) (endpoints[ep]->tbptr + CONFIG_SYS_IMMR);  	if (tx_cbdp->cbd_sc & TX_BD_R || usbp->usber & USB_E_TXB) {  		mpc8xx_udc_flush_tx_fifo (ep); @@ -903,7 +903,7 @@ static int mpc8xx_udc_ep_tx (struct usb_endpoint_instance *epi)  			return -1;  		} -		tx_cbdp = (cbd_t *) (endpoints[ep]->tbptr + CFG_IMMR); +		tx_cbdp = (cbd_t *) (endpoints[ep]->tbptr + CONFIG_SYS_IMMR);  		while (tx_cbdp->cbd_sc & TX_BD_R) {  		};  		tx_cbdp->cbd_sc = (tx_cbdp->cbd_sc & TX_BD_W); @@ -1187,10 +1187,10 @@ static void mpc8xx_udc_clock_init (volatile immap_t * immr,  				   volatile cpm8xx_t * cp)  { -#if defined(CFG_USB_EXTC_CLK) +#if defined(CONFIG_SYS_USB_EXTC_CLK)  	/* This has been tested with a 48MHz crystal on CLK6 */ -	switch (CFG_USB_EXTC_CLK) { +	switch (CONFIG_SYS_USB_EXTC_CLK) {  	case 1:  		immr->im_ioport.iop_papar |= 0x0100;  		immr->im_ioport.iop_padir &= ~0x0100; @@ -1216,7 +1216,7 @@ static void mpc8xx_udc_clock_init (volatile immap_t * immr,  		break;  	} -#elif defined(CFG_USB_BRGCLK) +#elif defined(CONFIG_SYS_USB_BRGCLK)  	/* This has been tested with brgclk == 50MHz */  	int divisor = 0; @@ -1233,7 +1233,7 @@ static void mpc8xx_udc_clock_init (volatile immap_t * immr,  	divisor = (gd->cpu_clk / 48000000L) - 1;  	cp->cp_sicr &= ~0x0000003F; -	switch (CFG_USB_BRGCLK) { +	switch (CONFIG_SYS_USB_BRGCLK) {  	case 1:  		cp->cp_brgc1 |= (divisor | CPM_BRG_EN);  		cp->cp_sicr &= ~0x2F; @@ -1256,7 +1256,7 @@ static void mpc8xx_udc_clock_init (volatile immap_t * immr,  	}  #else -#error "CFG_USB_EXTC_CLK or CFG_USB_BRGCLK must be defined" +#error "CONFIG_SYS_USB_EXTC_CLK or CONFIG_SYS_USB_BRGCLK must be defined"  #endif  } |