blob: 9dda666fe1f125c5b41e73ce524f567d2c7c2a71 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Kyösti Mälkki1fd75082013-06-11 16:32:01 +03002
3// Use simple device model for this file even in ramstage
4#define __SIMPLE_DEVICE__
5
zbao246e84b2012-07-13 18:47:03 +08006#include <stdint.h>
7#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02008#include <device/mmio.h>
Kyösti Mälkkie2227a22014-02-05 13:02:55 +02009#include <device/pci_ehci.h>
zbao246e84b2012-07-13 18:47:03 +080010#include <device/pci_def.h>
11#include "hudson.h"
12
Kyösti Mälkki021fa782013-08-16 06:34:04 +030013#define DEBUGPORT_MISC_CONTROL 0x80
zbao246e84b2012-07-13 18:47:03 +080014
Kyösti Mälkki8101aa62013-08-15 16:27:06 +030015pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
zbao246e84b2012-07-13 18:47:03 +080016{
Kyösti Mälkki6683e402017-07-30 13:23:32 +030017 /* Enable all of the USB controllers */
18 outb(0xEF, PM_INDEX);
19 outb(0x7F, PM_DATA);
20
Elyes HAOUASc021ffe2016-09-18 19:18:56 +020021 if (hcd_idx == 3)
Kyösti Mälkkia1179ca2013-09-17 00:12:05 +030022 return PCI_DEV(0, 0x16, 2);
Elyes HAOUASc021ffe2016-09-18 19:18:56 +020023 else if (hcd_idx == 2)
Kyösti Mälkkia1179ca2013-09-17 00:12:05 +030024 return PCI_DEV(0, 0x13, 2);
25 else
26 return PCI_DEV(0, 0x12, 2);
Kyösti Mälkki8101aa62013-08-15 16:27:06 +030027}
28
29void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
30{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080031 u8 *base_regs = pci_ehci_base_regs(dev);
zbao246e84b2012-07-13 18:47:03 +080032 u32 reg32;
33
34 /* Write the port number to DEBUGPORT_MISC_CONTROL[31:28]. */
Kyösti Mälkki021fa782013-08-16 06:34:04 +030035 reg32 = read32(base_regs + DEBUGPORT_MISC_CONTROL);
zbao246e84b2012-07-13 18:47:03 +080036 reg32 &= ~(0xf << 28);
37 reg32 |= (port << 28);
38 reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
Kevin Paul Herbert4104e6c2015-02-25 00:36:51 -080039 write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
zbao246e84b2012-07-13 18:47:03 +080040}