blob: 47b5990a694952094d518facdc4a50289bbf7bd1 [file] [log] [blame]
zbao246e84b2012-07-13 18:47:03 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, 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.
zbao246e84b2012-07-13 18:47:03 +080014 */
Kyösti Mälkki1fd75082013-06-11 16:32:01 +030015
16// Use simple device model for this file even in ramstage
17#define __SIMPLE_DEVICE__
18
zbao246e84b2012-07-13 18:47:03 +080019#include <stdint.h>
20#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020021#include <device/mmio.h>
Kyösti Mälkkie2227a22014-02-05 13:02:55 +020022#include <device/pci_ehci.h>
zbao246e84b2012-07-13 18:47:03 +080023#include <device/pci_def.h>
24#include "hudson.h"
25
Kyösti Mälkki021fa782013-08-16 06:34:04 +030026#define DEBUGPORT_MISC_CONTROL 0x80
zbao246e84b2012-07-13 18:47:03 +080027
Kyösti Mälkki8101aa62013-08-15 16:27:06 +030028pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
zbao246e84b2012-07-13 18:47:03 +080029{
Kyösti Mälkki6683e402017-07-30 13:23:32 +030030 /* Enable all of the USB controllers */
31 outb(0xEF, PM_INDEX);
32 outb(0x7F, PM_DATA);
33
Elyes HAOUASc021ffe2016-09-18 19:18:56 +020034 if (hcd_idx == 3)
Kyösti Mälkkia1179ca2013-09-17 00:12:05 +030035 return PCI_DEV(0, 0x16, 2);
Elyes HAOUASc021ffe2016-09-18 19:18:56 +020036 else if (hcd_idx == 2)
Kyösti Mälkkia1179ca2013-09-17 00:12:05 +030037 return PCI_DEV(0, 0x13, 2);
38 else
39 return PCI_DEV(0, 0x12, 2);
Kyösti Mälkki8101aa62013-08-15 16:27:06 +030040}
41
42void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
43{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080044 u8 *base_regs = pci_ehci_base_regs(dev);
zbao246e84b2012-07-13 18:47:03 +080045 u32 reg32;
46
47 /* Write the port number to DEBUGPORT_MISC_CONTROL[31:28]. */
Kyösti Mälkki021fa782013-08-16 06:34:04 +030048 reg32 = read32(base_regs + DEBUGPORT_MISC_CONTROL);
zbao246e84b2012-07-13 18:47:03 +080049 reg32 &= ~(0xf << 28);
50 reg32 |= (port << 28);
51 reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
Kevin Paul Herbert4104e6c2015-02-25 00:36:51 -080052 write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
zbao246e84b2012-07-13 18:47:03 +080053}