mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
Cleanup.
This commit is contained in:
parent
232c150a25
commit
bdda519d3c
1 changed files with 11 additions and 9 deletions
|
@ -31,7 +31,9 @@
|
||||||
#if defined(CONFIG_OMAP1510) && defined(CONFIG_USB_DEVICE)
|
#if defined(CONFIG_OMAP1510) && defined(CONFIG_USB_DEVICE)
|
||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
#ifdef CONFIG_OMAP_SX1
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "usbdcore.h"
|
#include "usbdcore.h"
|
||||||
#include "usbdcore_omap1510.h"
|
#include "usbdcore_omap1510.h"
|
||||||
|
@ -1084,7 +1086,7 @@ void udc_endpoint_write (struct usb_endpoint_instance *endpoint)
|
||||||
int udc_init (void)
|
int udc_init (void)
|
||||||
{
|
{
|
||||||
u16 udc_rev;
|
u16 udc_rev;
|
||||||
uchar wert;
|
uchar value;
|
||||||
|
|
||||||
udc_device = NULL;
|
udc_device = NULL;
|
||||||
|
|
||||||
|
@ -1117,15 +1119,15 @@ int udc_init (void)
|
||||||
printf ("USB: TI OMAP1510 USB function module rev %d.%d\n",
|
printf ("USB: TI OMAP1510 USB function module rev %d.%d\n",
|
||||||
udc_rev >> 4, udc_rev & 0xf);
|
udc_rev >> 4, udc_rev & 0xf);
|
||||||
|
|
||||||
/* Configure some Sofia Unit registers
|
#ifdef CONFIG_OMAP_SX1
|
||||||
*/
|
i2c_read (0x32, 0x04, 1, &value, 1);
|
||||||
i2c_read (0x32, 0x04, 1, &wert, 1); /* SOF_Control_CONT */
|
value |= 0x04;
|
||||||
wert |= 0x04; /* SOF_ContCONT_dis_usb_det */
|
i2c_write (0x32, 0x04, 1, &value, 1);
|
||||||
i2c_write (0x32, 0x04, 1, &wert, 1);
|
|
||||||
|
|
||||||
i2c_read (0x32, 0x03, 1, &wert, 1); /* SOF_Control */
|
i2c_read (0x32, 0x03, 1, &value, 1);
|
||||||
wert |= 0x01; /* SOF_Cont_usb_en */
|
value |= 0x01;
|
||||||
i2c_write (0x32, 0x03, 1, &wert, 1);
|
i2c_write (0x32, 0x03, 1, &value, 1);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* The VBUS_MODE bit selects whether VBUS detection is done via
|
/* The VBUS_MODE bit selects whether VBUS detection is done via
|
||||||
* software (1) or hardware (0). When software detection is
|
* software (1) or hardware (0). When software detection is
|
||||||
|
|
Loading…
Add table
Reference in a new issue