summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8195/pcie.c
blob: 19b4c93a3b0acbe7cf0ed655b8d3be5d37883ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* SPDX-License-Identifier: GPL-2.0-only OR MIT */

#include <device/mmio.h>
#include <device/resource.h>
#include <gpio.h>
#include <soc/addressmap.h>
#include <soc/early_init.h>
#include <soc/pcie.h>
#include <soc/pcie_common.h>

#define PCIE_REG_BASE_PORT0	0x112f0000

static const struct pad_func pcie_pins[2][3] = {
	{
		PAD_FUNC_UP(PCIE_WAKE_N, WAKEN),
		PAD_FUNC_UP(PCIE_PERESET_N, PERSTN),
		PAD_FUNC_UP(PCIE_CLKREQ_N, CLKREQN),
	},
	{
		PAD_FUNC_UP(CMMCLK0, PERSTN_1),
		PAD_FUNC_UP(CMMCLK1, CLKREQN_1),
		PAD_FUNC_UP(CMMCLK2, WAKEN_1),
	},
};

static void mtk_pcie_set_pinmux(uint8_t port)
{
	const struct pad_func *pins = pcie_pins[port];
	size_t i;

	for (i = 0; i < ARRAY_SIZE(pcie_pins[port]); i++) {
		gpio_set_mode(pins[i].gpio, pins[i].func);
		gpio_set_pull(pins[i].gpio, GPIO_PULL_ENABLE, pins[i].select);
	}
}

void mtk_pcie_pre_init(void)
{
	mtk_pcie_set_pinmux(0);

	/* Assert all reset signals at early stage */
	mtk_pcie_reset(PCIE_REG_BASE_PORT0, true);

	early_init_save_time(EARLY_INIT_PCIE);
}