1 ========================
2 S3C24XX USB Host support
3 ========================
10 This document details the S3C2410/S3C2440 in-built OHCI USB host support.
15 Enable at least the following kernel options:
21 <*> Support for Host-side USB
31 Once these options are configured, the standard set of USB device
32 drivers can be configured and used.
38 The driver attaches to a platform device, which will need to be
39 added by the board specific support file in arch/arm/mach-s3c,
40 such as mach-bast.c or mach-smdk2410.c
42 The platform device's platform_data field is only needed if the
43 board implements extra power control or over-current monitoring.
45 The OHCI driver does not ensure the state of the S3C2410's MISCCTRL
46 register, so if both ports are to be used for the host, then it is
47 the board support file's responsibility to ensure that the second
48 port is configured to be connected to the OHCI core.
54 See include/linux/platform_data/usb-ohci-s3c2410.h for the
55 descriptions of the platform device data. An implementation
56 can be found in arch/arm/mach-s3c/simtec-usb.c .
58 The `struct s3c2410_hcd_info` contains a pair of functions
59 that get called to enable over-current detection, and to
60 control the port power status.
62 The ports are numbered 0 and 1.
65 Called to enable or disable the power on the port.
68 Called to enable or disable the over-current monitoring.
69 This should claim or release the resources being used to
70 check the power condition on the port, such as an IRQ.
73 The OHCI driver fills this field in for the over-current code
74 to call when there is a change to the over-current state on
75 an port. The ports argument is a bitmask of 1 bit per port,
76 with bit X being 1 for an over-current on port X.
78 The function s3c2410_usb_report_oc() has been provided to
79 ensure this is called correctly.
82 This is struct describes each port, 0 or 1. The platform driver
83 should set the flags field of each port to S3C_HCDFLG_USED if
91 Ben Dooks, Copyright 2005 Simtec Electronics