blob: caa6187ffe66655cf32d4002a6760e1250b4f870 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Yanokbc8f8c22010-09-17 23:41:50 +02002/*
3 * Copyright (C) 2010 Freescale Semiconductor, Inc.
4 * Copyright (C) 2010 Ilya Yanok, Emcraft Systems, yanok@emcraft.com
Ilya Yanokbc8f8c22010-09-17 23:41:50 +02005 */
6
7#include <common.h>
8#include <i2c.h>
Simon Glass2cf431c2019-11-14 12:57:47 -07009#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060010#include <net.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Ilya Yanokbc8f8c22010-09-17 23:41:50 +020012#include <fdt_support.h>
13#include <pci.h>
14#include <mpc83xx.h>
15#include <netdev.h>
16#include <asm/io.h>
17#include <asm/fsl_serdes.h>
18#include <asm/fsl_mpc83xx_serdes.h>
19
Ilya Yanokbc8f8c22010-09-17 23:41:50 +020020int checkboard(void)
21{
22 printf("Board: MPC8308 P1M\n");
23
24 return 0;
25}
26
27static struct pci_region pcie_regions_0[] = {
28 {
29 .bus_start = CONFIG_SYS_PCIE1_MEM_BASE,
30 .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS,
31 .size = CONFIG_SYS_PCIE1_MEM_SIZE,
32 .flags = PCI_REGION_MEM,
33 },
34 {
35 .bus_start = CONFIG_SYS_PCIE1_IO_BASE,
36 .phys_start = CONFIG_SYS_PCIE1_IO_PHYS,
37 .size = CONFIG_SYS_PCIE1_IO_SIZE,
38 .flags = PCI_REGION_IO,
39 },
40};
41
42void pci_init_board(void)
43{
44 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
45 sysconf83xx_t *sysconf = &immr->sysconf;
46 law83xx_t *pcie_law = sysconf->pcielaw;
47 struct pci_region *pcie_reg[] = { pcie_regions_0 };
48
49 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_PEX,
50 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
51
52 /* Deassert the resets in the control register */
53 out_be32(&sysconf->pecr1, 0xE0008000);
54 udelay(2000);
55
56 /* Configure PCI Express Local Access Windows */
57 out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR);
58 out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB);
59
Peter Tyser6aa3d3b2010-09-14 19:13:50 -050060 mpc83xx_pcie_init(1, pcie_reg);
Ilya Yanokbc8f8c22010-09-17 23:41:50 +020061}
62
63#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glasse895a4b2014-10-23 18:58:47 -060064int ft_board_setup(void *blob, bd_t *bd)
Ilya Yanokbc8f8c22010-09-17 23:41:50 +020065{
66 ft_cpu_setup(blob, bd);
Sriram Dasha5c289b2016-09-16 17:12:15 +053067 fsl_fdt_fixup_dr_usb(blob, bd);
Simon Glasse895a4b2014-10-23 18:58:47 -060068
69 return 0;
Ilya Yanokbc8f8c22010-09-17 23:41:50 +020070}
71#endif
72
73int board_eth_init(bd_t *bis)
74{
75 int rv, num_if = 0;
76
77 /* Initialize TSECs first */
78 rv = cpu_eth_init(bis);
79 if (rv >= 0)
80 num_if += rv;
81 else
82 printf("ERROR: failed to initialize TSECs.\n");
83
84 rv = pci_eth_init(bis);
85 if (rv >= 0)
86 num_if += rv;
87 else
88 printf("ERROR: failed to initialize PCI Ethernet.\n");
89
90 return num_if;
91}