blob: 6fb3d2123df0a5183ec921f608735ab714f4e9e7 [file] [log] [blame]
Hao Zhange5951072014-07-09 23:44:46 +03001/*
2 * K2HK EVM : Board initialization
3 *
4 * (C) Copyright 2012-2014
5 * Texas Instruments Incorporated, <www.ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
Vitaly Andrianov61f66fd2014-07-25 22:23:19 +030011#include <asm/arch/clock.h>
Hao Zhange5951072014-07-09 23:44:46 +030012#include <asm/arch/hardware.h>
13#include <asm/arch/emac_defs.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
17unsigned int external_clk[ext_clk_count] = {
18 [sys_clk] = 122880000,
19 [alt_core_clk] = 125000000,
20 [pa_clk] = 122880000,
21 [tetris_clk] = 125000000,
22 [ddr3a_clk] = 100000000,
23 [ddr3b_clk] = 100000000,
24 [mcm_clk] = 312500000,
25 [pcie_clk] = 100000000,
26 [sgmii_srio_clk] = 156250000,
27 [xgmii_clk] = 156250000,
28 [usb_clk] = 100000000,
29 [rp1_clk] = 123456789
30};
31
Vitaly Andrianov61f66fd2014-07-25 22:23:19 +030032static struct pll_init_data core_pll_config[] = {
33 CORE_PLL_799,
34 CORE_PLL_999,
35 CORE_PLL_1200,
Hao Zhange5951072014-07-09 23:44:46 +030036};
37
Vitaly Andrianov61f66fd2014-07-25 22:23:19 +030038static struct pll_init_data tetris_pll_config[] = {
39 TETRIS_PLL_800,
40 TETRIS_PLL_1000,
41 TETRIS_PLL_1200,
42 TETRIS_PLL_1350,
43 TETRIS_PLL_1400,
44};
45
46static struct pll_init_data pa_pll_config =
47 PASS_PLL_983;
48
Hao Zhange5951072014-07-09 23:44:46 +030049#ifdef CONFIG_DRIVER_TI_KEYSTONE_NET
50struct eth_priv_t eth_priv_cfg[] = {
51 {
52 .int_name = "K2HK_EMAC",
53 .rx_flow = 22,
54 .phy_addr = 0,
55 .slave_port = 1,
56 .sgmii_link_type = SGMII_LINK_MAC_PHY,
57 },
58 {
59 .int_name = "K2HK_EMAC1",
60 .rx_flow = 23,
61 .phy_addr = 1,
62 .slave_port = 2,
63 .sgmii_link_type = SGMII_LINK_MAC_PHY,
64 },
65 {
66 .int_name = "K2HK_EMAC2",
67 .rx_flow = 24,
68 .phy_addr = 2,
69 .slave_port = 3,
70 .sgmii_link_type = SGMII_LINK_MAC_MAC_FORCED,
71 },
72 {
73 .int_name = "K2HK_EMAC3",
74 .rx_flow = 25,
75 .phy_addr = 3,
76 .slave_port = 4,
77 .sgmii_link_type = SGMII_LINK_MAC_MAC_FORCED,
78 },
79};
80
81int get_num_eth_ports(void)
82{
83 return sizeof(eth_priv_cfg) / sizeof(struct eth_priv_t);
84}
85#endif
86
87#ifdef CONFIG_BOARD_EARLY_INIT_F
88int board_early_init_f(void)
89{
Vitaly Andrianov61f66fd2014-07-25 22:23:19 +030090 int speed;
91
92 speed = get_max_dev_speed();
93 init_pll(&core_pll_config[speed]);
94
95 init_pll(&pa_pll_config);
96
97 speed = get_max_arm_speed();
98 init_pll(&tetris_pll_config[speed]);
99
Hao Zhange5951072014-07-09 23:44:46 +0300100 return 0;
101}
102#endif