blob: f74a8335841a7feda2ef5f242db104aca810ec37 [file] [log] [blame]
Patrick Georgid21f68b2008-09-02 16:06:22 +00001/*
2 * This file is part of the libpayload project.
3 *
Stefan Reinauerb56f2d02010-03-25 22:17:36 +00004 * Copyright (C) 2008-2010 coresystems GmbH
Patrick Georgid21f68b2008-09-02 16:06:22 +00005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Stefan Reinauer8992e532013-05-02 16:16:41 -070030//#define USB_DEBUG
Jordan Crousedb8c0ab2008-11-24 17:54:46 +000031#include <libpayload-config.h>
Jordan Crouse29061a52008-09-11 17:29:00 +000032#include <usb/usb.h>
Patrick Georgid21f68b2008-09-02 16:06:22 +000033#include "uhci.h"
Patrick Georgi6615ef32010-08-13 09:18:58 +000034#include "ohci.h"
Patrick Georgi7f43dc12010-09-25 17:01:13 +000035#include "ehci.h"
Patrick Georgi6615ef32010-08-13 09:18:58 +000036#include "xhci.h"
Jordan Crouse29061a52008-09-11 17:29:00 +000037#include <usb/usbdisk.h>
Patrick Georgid21f68b2008-09-02 16:06:22 +000038
Stefan Reinauer8992e532013-05-02 16:16:41 -070039#ifdef CONFIG_USB_PCI
Patrick Georgid21f68b2008-09-02 16:06:22 +000040/**
41 * Initializes USB controller attached to PCI
42 *
43 * @param bus PCI bus number
44 * @param dev PCI device id at bus
45 * @param func function id of the controller
46 */
Nico Huberba22e4c2012-11-23 11:34:20 +010047static int usb_controller_initialize(int bus, int dev, int func)
Patrick Georgid21f68b2008-09-02 16:06:22 +000048{
49 u32 class;
50 u32 devclass;
51 u32 prog_if;
Gabe Black9e8af582012-11-08 19:31:23 -080052 pcidev_t pci_device;
Patrick Georgid21f68b2008-09-02 16:06:22 +000053 u32 pciid;
54
Gabe Black9e8af582012-11-08 19:31:23 -080055 pci_device = PCI_DEV (bus, dev, func);
56 class = pci_read_config32(pci_device, 8);
57 pciid = pci_read_config32(pci_device, 0);
Patrick Georgid21f68b2008-09-02 16:06:22 +000058
59 devclass = class >> 16;
60 prog_if = (class >> 8) & 0xff;
61
62 /* enable busmaster */
Patrick Georgid21f68b2008-09-02 16:06:22 +000063 if (devclass == 0xc03) {
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000064 u32 pci_command;
65
Gabe Black9e8af582012-11-08 19:31:23 -080066 pci_command = pci_read_config32(pci_device, PCI_COMMAND);
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000067 pci_command |= PCI_COMMAND_MASTER;
Gabe Black9e8af582012-11-08 19:31:23 -080068 pci_write_config32(pci_device, PCI_COMMAND, pci_command);
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000069
Dave Frodin6bf11cf2012-12-11 13:08:07 -070070 usb_debug("%02x:%02x.%x %04x:%04x.%d ", bus, dev, func,
Patrick Georgid21f68b2008-09-02 16:06:22 +000071 pciid >> 16, pciid & 0xFFFF, func);
Gabe Black1b33c312012-10-08 01:58:37 -070072 switch (prog_if) {
73 case 0x00:
Patrick Georgid21f68b2008-09-02 16:06:22 +000074#ifdef CONFIG_USB_UHCI
Dave Frodin6bf11cf2012-12-11 13:08:07 -070075 usb_debug("UHCI controller\n");
Stefan Reinauer8992e532013-05-02 16:16:41 -070076 uhci_pci_init (pci_device);
Patrick Georgid21f68b2008-09-02 16:06:22 +000077#else
Dave Frodin6bf11cf2012-12-11 13:08:07 -070078 usb_debug("UHCI controller (not supported)\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000079#endif
Gabe Black1b33c312012-10-08 01:58:37 -070080 break;
Steven A. Falco25f23f12011-07-13 21:59:31 -040081
Gabe Black1b33c312012-10-08 01:58:37 -070082 case 0x10:
Patrick Georgid21f68b2008-09-02 16:06:22 +000083#ifdef CONFIG_USB_OHCI
Dave Frodin6bf11cf2012-12-11 13:08:07 -070084 usb_debug("OHCI controller\n");
Stefan Reinauer8992e532013-05-02 16:16:41 -070085 ohci_pci_init(pci_device);
Patrick Georgid21f68b2008-09-02 16:06:22 +000086#else
Dave Frodin6bf11cf2012-12-11 13:08:07 -070087 usb_debug("OHCI controller (not supported)\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000088#endif
Gabe Black1b33c312012-10-08 01:58:37 -070089 break;
Patrick Georgid21f68b2008-09-02 16:06:22 +000090
Gabe Black1b33c312012-10-08 01:58:37 -070091 case 0x20:
Patrick Georgid21f68b2008-09-02 16:06:22 +000092#ifdef CONFIG_USB_EHCI
Dave Frodin6bf11cf2012-12-11 13:08:07 -070093 usb_debug("EHCI controller\n");
Stefan Reinauer8992e532013-05-02 16:16:41 -070094 ehci_pci_init(pci_device);
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000095#else
Dave Frodin6bf11cf2012-12-11 13:08:07 -070096 usb_debug("EHCI controller (not supported)\n");
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000097#endif
Gabe Black1b33c312012-10-08 01:58:37 -070098 break;
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000099
Gabe Black1b33c312012-10-08 01:58:37 -0700100 case 0x30:
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000101#ifdef CONFIG_USB_XHCI
Dave Frodin6bf11cf2012-12-11 13:08:07 -0700102 usb_debug("xHCI controller\n");
Stefan Reinauer8992e532013-05-02 16:16:41 -0700103 xhci_pci_init(pci_device);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000104#else
Dave Frodin6bf11cf2012-12-11 13:08:07 -0700105 usb_debug("xHCI controller (not supported)\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +0000106#endif
Gabe Black1b33c312012-10-08 01:58:37 -0700107 break;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000108
Gabe Black1b33c312012-10-08 01:58:37 -0700109 default:
Dave Frodin6bf11cf2012-12-11 13:08:07 -0700110 usb_debug("unknown controller %x not supported\n",
Gabe Black1b33c312012-10-08 01:58:37 -0700111 prog_if);
112 break;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000113 }
114 }
115
116 return 0;
117}
118
Gabe Black1b33c312012-10-08 01:58:37 -0700119static void usb_scan_pci_bus(int bus)
120{
121 int dev, func;
122 for (dev = 0; dev < 32; dev++) {
123 u8 header_type;
Gabe Black9e8af582012-11-08 19:31:23 -0800124 pcidev_t pci_device = PCI_DEV(bus, dev, 0);
125
Gabe Black1b33c312012-10-08 01:58:37 -0700126 /* Check if there's a device here at all. */
Gabe Black9e8af582012-11-08 19:31:23 -0800127 if (pci_read_config32(pci_device, REG_VENDOR_ID) == 0xffffffff)
Gabe Black1b33c312012-10-08 01:58:37 -0700128 continue;
Gabe Black9e8af582012-11-08 19:31:23 -0800129
Gabe Black1b33c312012-10-08 01:58:37 -0700130 /*
131 * EHCI is defined by standards to be at a higher function
132 * than the USB1 controllers. We don't want to init USB1 +
133 * devices just to "steal" those for USB2, so make sure USB2
Gabe Black9e8af582012-11-08 19:31:23 -0800134 * comes first by scanning multifunction devices from 7 to 0.
Gabe Black1b33c312012-10-08 01:58:37 -0700135 */
Gabe Black9e8af582012-11-08 19:31:23 -0800136
Gabe Black1b33c312012-10-08 01:58:37 -0700137 /* Check for a multifunction device. */
Gabe Black9e8af582012-11-08 19:31:23 -0800138 header_type = pci_read_config8(pci_device, REG_HEADER_TYPE);
Gabe Black1b33c312012-10-08 01:58:37 -0700139 if (header_type & HEADER_TYPE_MULTIFUNCTION)
Gabe Black9e8af582012-11-08 19:31:23 -0800140 func = 7;
141 else
142 func = 0;
143
144 for (; func >= 0; func--) {
145 pci_device = PCI_DEV(bus, dev, func);
146 header_type = pci_read_config8(pci_device, REG_HEADER_TYPE);
147 /* If this is a bridge, scan the other side. */
148 if ((header_type & ~HEADER_TYPE_MULTIFUNCTION) ==
149 HEADER_TYPE_BRIDGE)
150 usb_scan_pci_bus(pci_read_config8(pci_device,
151 REG_SECONDARY_BUS));
152 else
Gabe Black1b33c312012-10-08 01:58:37 -0700153 usb_controller_initialize(bus, dev, func);
Gabe Black9e8af582012-11-08 19:31:23 -0800154 }
Gabe Black1b33c312012-10-08 01:58:37 -0700155 }
156}
Stefan Reinauer8992e532013-05-02 16:16:41 -0700157#endif
158
159#ifdef CONFIG_USB_MEMORY
160static void usb_scan_memory(void)
161{
162#ifdef CONFIG_USB_XHCI
163 xhci_init((void *)(unsigned long)CONFIG_USB_XHCI_BASE_ADDRESS);
164#endif
165#ifdef CONFIG_USB_EHCI
166 ehci_init((void *)(unsigned long)CONFIG_USB_EHCI_BASE_ADDRESS);
167#endif
168#ifdef CONFIG_USB_OHCI
169 ohci_init((void *)(unsigned long)CONFIG_USB_OHCI_BASE_ADDRESS);
170#endif
171}
172#endif
Gabe Black1b33c312012-10-08 01:58:37 -0700173
Patrick Georgid21f68b2008-09-02 16:06:22 +0000174/**
175 * Initialize all USB controllers attached to PCI.
176 */
Gabe Black1b33c312012-10-08 01:58:37 -0700177int usb_initialize(void)
Patrick Georgid21f68b2008-09-02 16:06:22 +0000178{
Stefan Reinauer8992e532013-05-02 16:16:41 -0700179#ifdef CONFIG_USB_PCI
Gabe Black1b33c312012-10-08 01:58:37 -0700180 usb_scan_pci_bus(0);
Stefan Reinauer8992e532013-05-02 16:16:41 -0700181#endif
182#ifdef CONFIG_USB_MEMORY
183 usb_scan_memory();
184#endif
Patrick Georgid21f68b2008-09-02 16:06:22 +0000185 return 0;
186}