blob: d3cfbb75e15f2ab37e15991e4cbe317759ea4577 [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
Jordan Crousedb8c0ab2008-11-24 17:54:46 +000030#include <libpayload-config.h>
Jordan Crouse29061a52008-09-11 17:29:00 +000031#include <usb/usb.h>
Patrick Georgid21f68b2008-09-02 16:06:22 +000032#include "uhci.h"
Patrick Georgi6615ef32010-08-13 09:18:58 +000033#include "ohci.h"
Patrick Georgi7f43dc12010-09-25 17:01:13 +000034#include "ehci.h"
Patrick Georgi6615ef32010-08-13 09:18:58 +000035#include "xhci.h"
Jordan Crouse29061a52008-09-11 17:29:00 +000036#include <usb/usbdisk.h>
Patrick Georgid21f68b2008-09-02 16:06:22 +000037
38/**
39 * Initializes USB controller attached to PCI
40 *
41 * @param bus PCI bus number
42 * @param dev PCI device id at bus
43 * @param func function id of the controller
44 */
45int
46usb_controller_initialize (int bus, int dev, int func)
47{
48 u32 class;
49 u32 devclass;
50 u32 prog_if;
51 pcidev_t addr;
52 u32 pciid;
53
54 addr = PCI_DEV (bus, dev, func);
55 class = pci_read_config32 (addr, 8);
56 pciid = pci_read_config32 (addr, 0);
57
58 devclass = class >> 16;
59 prog_if = (class >> 8) & 0xff;
60
61 /* enable busmaster */
62#define PCI_COMMAND 4
63#define PCI_COMMAND_MASTER 4
Patrick Georgid21f68b2008-09-02 16:06:22 +000064 if (devclass == 0xc03) {
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000065 u32 pci_command;
66
67 pci_command =pci_read_config32(addr, PCI_COMMAND);
68 pci_command |= PCI_COMMAND_MASTER;
69 pci_write_config32(addr, PCI_COMMAND, pci_command);
70
Patrick Georgi6615ef32010-08-13 09:18:58 +000071 printf ("%02x:%02x.%x %04x:%04x.%d ", bus, dev, func,
Patrick Georgid21f68b2008-09-02 16:06:22 +000072 pciid >> 16, pciid & 0xFFFF, func);
Steven A. Falco25f23f12011-07-13 21:59:31 -040073 switch(prog_if) {
74 case 0x00:
75 printf ("UHCI controller\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000076#ifdef CONFIG_USB_UHCI
Steven A. Falco25f23f12011-07-13 21:59:31 -040077 uhci_init (addr);
Patrick Georgid21f68b2008-09-02 16:06:22 +000078#else
Steven A. Falco25f23f12011-07-13 21:59:31 -040079 printf ("Not supported.\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000080#endif
Steven A. Falco25f23f12011-07-13 21:59:31 -040081 break;
82
83 case 0x10:
84 printf ("OHCI controller\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000085#ifdef CONFIG_USB_OHCI
Steven A. Falco25f23f12011-07-13 21:59:31 -040086 ohci_init(addr);
Patrick Georgid21f68b2008-09-02 16:06:22 +000087#else
Steven A. Falco25f23f12011-07-13 21:59:31 -040088 printf ("Not supported.\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000089#endif
Steven A. Falco25f23f12011-07-13 21:59:31 -040090 break;
Patrick Georgid21f68b2008-09-02 16:06:22 +000091
Steven A. Falco25f23f12011-07-13 21:59:31 -040092 case 0x20:
93 printf ("EHCI controller\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000094#ifdef CONFIG_USB_EHCI
Steven A. Falco25f23f12011-07-13 21:59:31 -040095 ehci_init(addr);
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000096#else
Steven A. Falco25f23f12011-07-13 21:59:31 -040097 printf ("Not supported.\n");
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000098#endif
Steven A. Falco25f23f12011-07-13 21:59:31 -040099 break;
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000100
Steven A. Falco25f23f12011-07-13 21:59:31 -0400101 case 0x30:
102 printf ("xHCI controller\n");
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000103#ifdef CONFIG_USB_XHCI
Steven A. Falco25f23f12011-07-13 21:59:31 -0400104 xhci_init(addr);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000105#else
Steven A. Falco25f23f12011-07-13 21:59:31 -0400106 printf ("Not supported.\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +0000107#endif
Steven A. Falco25f23f12011-07-13 21:59:31 -0400108 break;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000109
Steven A. Falco25f23f12011-07-13 21:59:31 -0400110 default:
111 printf ("unknown controller %x not supported\n",
112 prog_if);
113 break;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000114 }
115 }
116
117 return 0;
118}
119
120/**
121 * Initialize all USB controllers attached to PCI.
122 */
123int
124usb_initialize (void)
125{
126 int bus, dev, func;
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000127 /* EHCI is defined by standards to be at a
128 * higher function than the USB1 controllers.
129 * We don't want to init USB1 + devices just to
130 * "steal" those for USB2, so make sure USB2
131 * comes first.
132 */
Patrick Georgid21f68b2008-09-02 16:06:22 +0000133 for (bus = 0; bus < 256; bus++)
134 for (dev = 0; dev < 32; dev++)
Jens Rottmann4e1ac832010-09-03 14:54:50 +0000135 if (pci_read_config32 (PCI_DEV(bus, dev, 0), 8) >> 16 != 0xffff)
Patrick Georgi6615ef32010-08-13 09:18:58 +0000136 for (func = 7; func >= 0 ; func--)
137 usb_controller_initialize (bus, dev, func);
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000138 usb_poll();
Patrick Georgid21f68b2008-09-02 16:06:22 +0000139 return 0;
140}
141
142int
143usb_exit (void)
144{
145 return 0;
146}