blob: 74577af4a8f50ec974393fd046b54a6c94ee3c73 [file] [log] [blame]
Duncan Laurie3c9f1742013-11-01 13:34:00 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <arch/acpi.h>
21#include <console/console.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <stdint.h>
26#include <reg_script.h>
27
28#include <baytrail/iomap.h>
29#include <baytrail/iosf.h>
30#include <baytrail/pci_devs.h>
31#include <baytrail/pmc.h>
32#include <baytrail/ramstage.h>
33#include <baytrail/ehci.h>
34
35#include "chip.h"
36
Aaron Durbin616f3942013-12-10 17:12:44 -080037static const struct reg_script ehci_init_script[] = {
Duncan Laurie3c9f1742013-11-01 13:34:00 -070038 /* Enable S0 PLL shutdown
39 * D29:F0:7A[12,10,7,6,4,3,2,1]=11111111b */
40 REG_PCI_OR16(0x7a, 0x14de),
41 /* Enable SB local clock gating
42 * D29:F0:7C[14,3,2]=111b (14 set in clock gating step) */
43 REG_PCI_OR32(0x7c, 0x0000000c),
44 REG_PCI_OR32(0x8c, 0x00000001),
45 /* Enable dynamic clock gating 0x4001=0xCE */
46 REG_IOSF_RMW(IOSF_PORT_USBPHY, 0x4001, 0xFFFFFF00, 0xCE),
47 /* Magic RCBA register set sequence */
48 /* RCBA + 0x200=0x1 */
49 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x200, 0x00000001),
50 /* RCBA + 0x204=0x2 */
51 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x204, 0x00000002),
52 /* RCBA + 0x208=0x0 */
53 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x208, 0x00000000),
54 /* RCBA + 0x240[4,3,2,1,0]=00000b */
55 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x240, ~0x0000001f, 0),
56 /* RCBA + 0x318[9,8,6,5,4,3,2,1,0]=000000111b */
57 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x318, ~0x00000378, 0x00000007),
58 /* RCBA + 0x31c[3,2,1,0]=0011b */
59 REG_MMIO_RMW32(RCBA_BASE_ADDRESS + 0x31c, ~0x0000000c, 0x00000003),
60 REG_SCRIPT_END
61};
62
Aaron Durbin616f3942013-12-10 17:12:44 -080063static const struct reg_script ehci_clock_gating_script[] = {
Duncan Laurie3c9f1742013-11-01 13:34:00 -070064 /* Enable SB local clock gating */
65 REG_PCI_OR32(0x7c, 0x00004000),
66 /* RCBA + 0x284=0xbe (step B0+) */
67 REG_MMIO_WRITE32(RCBA_BASE_ADDRESS + 0x284, 0x000000be),
68 REG_SCRIPT_END
69};
70
Aaron Durbin616f3942013-12-10 17:12:44 -080071static const struct reg_script ehci_disable_script[] = {
Duncan Laurie3c9f1742013-11-01 13:34:00 -070072 /* Clear Run/Stop Bit */
73 REG_RES_RMW32(PCI_BASE_ADDRESS_0, USB2CMD, ~USB2CMD_RS, 0),
74 /* Wait for HC Halted */
75 REG_RES_POLL32(PCI_BASE_ADDRESS_0, USB2STS,
76 USB2STS_HCHALT, USB2STS_HCHALT, 10000),
77 /* Disable Interrupts */
78 REG_PCI_OR32(EHCI_CMD_STS, INTRDIS),
79 /* Disable Asynchronous and Periodic Scheduler */
80 REG_RES_RMW32(PCI_BASE_ADDRESS_0, USB2CMD,
81 ~(USB2CMD_ASE | USB2CMD_PSE), 0),
82 /* Disable port wake */
83 REG_PCI_RMW32(EHCI_SBRN_FLA_PWC, ~(PORTWKIMP | PORTWKCAPMASK), 0),
84 /* Set Function Disable bit in RCBA */
85 REG_MMIO_OR32(RCBA_BASE_ADDRESS + RCBA_FUNC_DIS, RCBA_EHCI_DIS),
86 REG_SCRIPT_END
87};
88
Aaron Durbin616f3942013-12-10 17:12:44 -080089static const struct reg_script ehci_hc_reset[] = {
90 REG_RES_OR16(PCI_BASE_ADDRESS_0, USB2CMD, USB2CMD_HCRESET),
91 REG_SCRIPT_END
92};
93
Duncan Laurie3c9f1742013-11-01 13:34:00 -070094static void usb2_phy_init(device_t dev)
95{
96 struct soc_intel_baytrail_config *config = dev->chip_info;
Kane Chen374f27b2014-07-17 11:31:57 -070097 u32 usb2_comp_bg = (config->usb2_comp_bg == 0 ?
98 0x4700 : config->usb2_comp_bg);
Duncan Laurie3c9f1742013-11-01 13:34:00 -070099 struct reg_script usb2_phy_script[] = {
100 /* USB3PHYInit() */
Kane Chen314c4c32014-07-17 09:51:50 -0700101 REG_IOSF_WRITE(IOSF_PORT_USBPHY, USBPHY_COMPBG,
Kane Chen374f27b2014-07-17 11:31:57 -0700102 usb2_comp_bg),
Duncan Laurie3c9f1742013-11-01 13:34:00 -0700103 /* Per port phy settings, set in devicetree.cb */
104 REG_IOSF_WRITE(IOSF_PORT_USBPHY, USBPHY_PER_PORT_LANE0,
105 config->usb2_per_port_lane0),
106 REG_IOSF_WRITE(IOSF_PORT_USBPHY,
107 USBPHY_PER_PORT_RCOMP_HS_PULLUP0,
108 config->usb2_per_port_rcomp_hs_pullup0),
109 REG_IOSF_WRITE(IOSF_PORT_USBPHY, USBPHY_PER_PORT_LANE1,
110 config->usb2_per_port_lane1),
111 REG_IOSF_WRITE(IOSF_PORT_USBPHY,
112 USBPHY_PER_PORT_RCOMP_HS_PULLUP1,
113 config->usb2_per_port_rcomp_hs_pullup1),
114 REG_IOSF_WRITE(IOSF_PORT_USBPHY, USBPHY_PER_PORT_LANE2,
115 config->usb2_per_port_lane2),
116 REG_IOSF_WRITE(IOSF_PORT_USBPHY,
117 USBPHY_PER_PORT_RCOMP_HS_PULLUP2,
118 config->usb2_per_port_rcomp_hs_pullup2),
119 REG_IOSF_WRITE(IOSF_PORT_USBPHY, USBPHY_PER_PORT_LANE3,
120 config->usb2_per_port_lane3),
121 REG_IOSF_WRITE(IOSF_PORT_USBPHY,
122 USBPHY_PER_PORT_RCOMP_HS_PULLUP3,
123 config->usb2_per_port_rcomp_hs_pullup3),
124 REG_SCRIPT_END
125 };
126 reg_script_run(usb2_phy_script);
127}
128
129static void ehci_init(device_t dev)
130{
131 struct soc_intel_baytrail_config *config = dev->chip_info;
Duncan Laurie3c9f1742013-11-01 13:34:00 -0700132 struct reg_script ehci_hc_init[] = {
Duncan Laurie3c9f1742013-11-01 13:34:00 -0700133 /* Controller init */
134 REG_SCRIPT_NEXT(ehci_init_script),
135 /* Enable clock gating */
136 REG_SCRIPT_NEXT(ehci_clock_gating_script),
137 /*
138 * Disable ports if requested
139 */
140 /* Open per-port disable control override */
141 REG_IO_RMW16(ACPI_BASE_ADDRESS + UPRWC, ~0, UPRWC_WR_EN),
142 REG_PCI_WRITE8(EHCI_USB2PDO, config->usb2_port_disable_mask),
143 /* Close per-port disable control override */
144 REG_IO_RMW16(ACPI_BASE_ADDRESS + UPRWC, ~UPRWC_WR_EN, 0),
145 REG_SCRIPT_END
146 };
147
148 /* Don't reset controller in S3 resume path */
Kyösti Mälkkic3ed8862014-06-19 19:50:51 +0300149 if (!acpi_is_wakeup_s3())
Aaron Durbin616f3942013-12-10 17:12:44 -0800150 reg_script_run_on_dev(dev, ehci_hc_reset);
Duncan Laurie3c9f1742013-11-01 13:34:00 -0700151
152 /* Disable controller if ports are routed to XHCI */
153 if (config->usb_route_to_xhci) {
154 /* Disable controller */
Aaron Durbin616f3942013-12-10 17:12:44 -0800155 reg_script_run_on_dev(dev, ehci_disable_script);
Duncan Laurie3c9f1742013-11-01 13:34:00 -0700156
157 /* Hide device with southcluster function */
158 dev->enabled = 0;
159 southcluster_enable_dev(dev);
160 } else {
161 /* Initialize EHCI controller */
Aaron Durbin616f3942013-12-10 17:12:44 -0800162 reg_script_run_on_dev(dev, ehci_hc_init);
Duncan Laurie3c9f1742013-11-01 13:34:00 -0700163 }
164
165 /* Setup USB2 PHY based on board config */
166 usb2_phy_init(dev);
167}
168
169static struct device_operations ehci_device_ops = {
170 .read_resources = pci_dev_read_resources,
171 .set_resources = pci_dev_set_resources,
172 .enable_resources = pci_dev_enable_resources,
173 .init = ehci_init,
174 .ops_pci = &soc_pci_ops,
175};
176
177static const struct pci_driver baytrail_ehci __pci_driver = {
178 .ops = &ehci_device_ops,
179 .vendor = PCI_VENDOR_ID_INTEL,
180 .device = EHCI_DEVID
181};