blob: c968409e0a07800edc4dffb95a9cf2eb493cd1dd [file] [log] [blame]
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -07001/*
2 * This file is part of the coreboot project.
3 *
Subrata Banik7837c202018-05-07 17:13:40 +05304 * Copyright (C) 2016 Google Inc.
5 * Copyright (C) 2018 Intel Corporation.
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020017#include <device/pci_ops.h>
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070018#include <console/console.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
Subrata Banik7837c202018-05-07 17:13:40 +053022#include <intelblocks/p2sb.h>
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070023#include <soc/iomap.h>
Subrata Banik7837c202018-05-07 17:13:40 +053024#include <soc/p2sb.h>
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070025#include <soc/pci_devs.h>
Subrata Banik7837c202018-05-07 17:13:40 +053026#include <string.h>
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070027
Subrata Banik7837c202018-05-07 17:13:40 +053028#define PCH_P2SB_EPMASK(mask_number) (PCH_P2SB_EPMASK0 + ((mask_number) * 4))
29
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070030#define HIDE_BIT (1 << 0)
31
Subrata Banik7837c202018-05-07 17:13:40 +053032void p2sb_enable_bar(void)
33{
34 /* Enable PCR Base address in PCH */
Nico Hubere5495032020-02-17 18:26:51 +010035 pci_write_config32(PCH_DEV_P2SB, PCI_BASE_ADDRESS_0, P2SB_BAR);
36 pci_write_config32(PCH_DEV_P2SB, PCI_BASE_ADDRESS_1, 0);
Subrata Banik7837c202018-05-07 17:13:40 +053037
38 /* Enable P2SB MSE */
Nico Hubere5495032020-02-17 18:26:51 +010039 pci_write_config8(PCH_DEV_P2SB, PCI_COMMAND,
Subrata Banik7837c202018-05-07 17:13:40 +053040 PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
41}
42
43/*
44 * Enable decoding for HPET range.
45 * This is needed for FspMemoryInit to store and retrieve a global data
46 * pointer.
47 */
48void p2sb_configure_hpet(void)
49{
50 /*
51 * Enable decoding for HPET memory address range.
52 * HPTC_OFFSET(0x60) bit 7, when set the P2SB will decode
53 * the High Performance Timer memory address range
54 * selected by bits 1:0
55 */
Nico Hubere5495032020-02-17 18:26:51 +010056 pci_write_config8(PCH_DEV_P2SB, HPTC_OFFSET, HPTC_ADDR_ENABLE_BIT);
Subrata Banik7837c202018-05-07 17:13:40 +053057}
58
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070059static void p2sb_set_hide_bit(int hide)
60{
Subrata Banik7837c202018-05-07 17:13:40 +053061 const uint16_t reg = PCH_P2SB_E0 + 1;
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070062 const uint8_t mask = HIDE_BIT;
63 uint8_t val;
64
Nico Hubere5495032020-02-17 18:26:51 +010065 val = pci_read_config8(PCH_DEV_P2SB, reg);
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070066 val &= ~mask;
67 if (hide)
68 val |= mask;
Nico Hubere5495032020-02-17 18:26:51 +010069 pci_write_config8(PCH_DEV_P2SB, reg, val);
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070070}
71
72void p2sb_unhide(void)
73{
74 p2sb_set_hide_bit(0);
Subrata Banik7837c202018-05-07 17:13:40 +053075
Nico Hubere5495032020-02-17 18:26:51 +010076 if (pci_read_config16(PCH_DEV_P2SB, PCI_VENDOR_ID) !=
Subrata Banik7837c202018-05-07 17:13:40 +053077 PCI_VENDOR_ID_INTEL)
Keith Short15588b02019-05-09 11:40:34 -060078 die_with_post_code(POST_HW_INIT_FAILURE,
79 "Unable to unhide PCH_DEV_P2SB device !\n");
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -070080}
81
82void p2sb_hide(void)
83{
84 p2sb_set_hide_bit(1);
Subrata Banik7837c202018-05-07 17:13:40 +053085
Nico Hubere5495032020-02-17 18:26:51 +010086 if (pci_read_config16(PCH_DEV_P2SB, PCI_VENDOR_ID) !=
Subrata Banik7837c202018-05-07 17:13:40 +053087 0xFFFF)
Keith Short15588b02019-05-09 11:40:34 -060088 die_with_post_code(POST_HW_INIT_FAILURE,
89 "Unable to hide PCH_DEV_P2SB device !\n");
Subrata Banik7837c202018-05-07 17:13:40 +053090}
91
92static void p2sb_configure_endpoints(int epmask_id, uint32_t mask)
93{
94 uint32_t reg32;
95
Nico Hubere5495032020-02-17 18:26:51 +010096 reg32 = pci_read_config32(PCH_DEV_P2SB, PCH_P2SB_EPMASK(epmask_id));
97 pci_write_config32(PCH_DEV_P2SB, PCH_P2SB_EPMASK(epmask_id),
Subrata Banik7837c202018-05-07 17:13:40 +053098 reg32 | mask);
99}
100
101static void p2sb_lock_endpoints(void)
102{
103 uint8_t reg8;
104
105 /* Set the "Endpoint Mask Lock!", P2SB PCI offset E2h bit[1] to 1. */
Nico Hubere5495032020-02-17 18:26:51 +0100106 reg8 = pci_read_config8(PCH_DEV_P2SB, PCH_P2SB_E0 + 2);
107 pci_write_config8(PCH_DEV_P2SB, PCH_P2SB_E0 + 2,
Subrata Banik7837c202018-05-07 17:13:40 +0530108 reg8 | P2SB_E0_MASKLOCK);
109}
110
111void p2sb_disable_sideband_access(void)
112{
113 uint32_t ep_mask[P2SB_EP_MASK_MAX_REG];
114 int i;
115
116 memset(ep_mask, 0, sizeof(ep_mask));
117
118 p2sb_soc_get_sb_mask(ep_mask, ARRAY_SIZE(ep_mask));
119
120 /* Remove the host accessing right to PSF register range. */
121 for (i = 0; i < P2SB_EP_MASK_MAX_REG; i++)
122 p2sb_configure_endpoints(i, ep_mask[i]);
123
124 p2sb_lock_endpoints();
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -0700125}
126
127static void read_resources(struct device *dev)
128{
129 /*
130 * There's only one resource on the P2SB device. It's also already
131 * manually set to a fixed address in earlier boot stages.
Patrick Rudolph8d7a89b2019-10-04 09:22:27 +0200132 * The following code makes sure that it doesn't change if the device
133 * is visible and the resource allocator is being run.
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -0700134 */
135 mmio_resource(dev, PCI_BASE_ADDRESS_0, P2SB_BAR / KiB, P2SB_SIZE / KiB);
136}
137
138static const struct device_operations device_ops = {
139 .read_resources = read_resources,
140 .set_resources = DEVICE_NOOP,
Subrata Banik6bbc91a2017-12-07 14:55:51 +0530141 .ops_pci = &pci_dev_ops_pci,
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -0700142};
143
144static const unsigned short pci_device_ids[] = {
145 PCI_DEVICE_ID_INTEL_APL_P2SB,
146 PCI_DEVICE_ID_INTEL_GLK_P2SB,
Maxim Polyakov571d07d2019-08-22 13:11:32 +0300147 PCI_DEVICE_ID_INTEL_LWB_P2SB,
148 PCI_DEVICE_ID_INTEL_LWB_P2SB_SUPER,
Patrick Rudolph8d7a89b2019-10-04 09:22:27 +0200149 PCI_DEVICE_ID_INTEL_SKL_LP_P2SB,
150 PCI_DEVICE_ID_INTEL_SKL_P2SB,
151 PCI_DEVICE_ID_INTEL_KBL_P2SB,
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -0700152 PCI_DEVICE_ID_INTEL_CNL_P2SB,
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +0800153 PCI_DEVICE_ID_INTEL_CNP_H_P2SB,
Aamir Bohra9eac0392018-06-30 12:07:04 +0530154 PCI_DEVICE_ID_INTEL_ICL_P2SB,
Ronak Kanabarda7ffb482019-02-05 01:51:13 +0530155 PCI_DEVICE_ID_INTEL_CMP_P2SB,
Gaggery Tsai12a651c2019-12-05 11:23:20 -0800156 PCI_DEVICE_ID_INTEL_CMP_H_P2SB,
Ravi Sarawadi6b5bf402019-10-21 22:25:04 -0700157 PCI_DEVICE_ID_INTEL_TGL_P2SB,
rkanabar263f1292019-11-28 10:41:45 +0530158 PCI_DEVICE_ID_INTEL_JSP_PRE_PROD_P2SB,
Tan, Lean Sheng26136092020-01-20 19:13:56 -0800159 PCI_DEVICE_ID_INTEL_EHL_P2SB,
Lijian Zhaoa3cbbf72017-10-26 11:59:14 -0700160 0,
161};
162
163static const struct pci_driver pmc __pci_driver = {
164 .ops = &device_ops,
165 .vendor = PCI_VENDOR_ID_INTEL,
166 .devices = pci_device_ids,
167};