f0d5a60d1e9827c45e2e8cbb46f328000fb665c5
[coreboot.git] / payloads / libpayload / drivers / usb / usbinit.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008-2010 coresystems GmbH
5  *
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
30 #include <libpayload-config.h>
31 #include <usb/usb.h>
32 #include "uhci.h"
33 #include "ohci.h"
34 #include "ehci.h"
35 #include "xhci.h"
36 #include <usb/usbdisk.h>
37
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  */
45 int
46 usb_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
64         if (devclass == 0xc03) {
65                 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
71                 printf ("%02x:%02x.%x %04x:%04x.%d ", bus, dev, func,
72                         pciid >> 16, pciid & 0xFFFF, func);
73                 if (prog_if == 0) {
74                         printf ("UHCI controller\n");
75 #ifdef CONFIG_USB_UHCI
76                         uhci_init (addr);
77 #else
78                         printf ("Not supported.\n");
79 #endif
80                 }
81                 if (prog_if == 0x10) {
82                         printf ("OHCI controller\n");
83 #ifdef CONFIG_USB_OHCI
84                         ohci_init(addr);
85 #else
86                         printf ("Not supported.\n");
87 #endif
88
89                 }
90                 if (prog_if == 0x20) {
91                         printf ("EHCI controller\n");
92 #ifdef CONFIG_USB_EHCI
93                         ehci_init(addr);
94 #else
95                         printf ("Not supported.\n");
96 #endif
97
98                 }
99                 if (prog_if == 0x30) {
100                         printf ("xHCI controller\n");
101 #ifdef CONFIG_USB_XHCI
102                         xhci_init(addr);
103 #else
104                         printf ("Not supported.\n");
105 #endif
106
107                 }
108         }
109
110         return 0;
111 }
112
113 /**
114  * Initialize all USB controllers attached to PCI.
115  */
116 int
117 usb_initialize (void)
118 {
119         int bus, dev, func;
120         /* EHCI is defined by standards to be at a
121          * higher function than the USB1 controllers.
122          * We don't want to init USB1 + devices just to
123          * "steal" those for USB2, so make sure USB2
124          * comes first.
125          */
126         for (bus = 0; bus < 256; bus++)
127                 for (dev = 0; dev < 32; dev++)
128                         if (pci_read_config32 (PCI_DEV(bus, dev, 0), 8) >> 16 != 0xffff)
129                                 for (func = 7; func >= 0 ; func--)
130                                         usb_controller_initialize (bus, dev, func);
131         usb_poll();
132         return 0;
133 }
134
135 int
136 usb_exit (void)
137 {
138         return 0;
139 }