layerscape: Disable CONFIG_FMAN_ENET on *aqds* platforms
[platform/kernel/u-boot.git] / board / freescale / mpc8548cds / mpc8548cds.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2004, 2007, 2009-2011 Freescale Semiconductor, Inc.
4  *
5  * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
6  */
7
8 #include <common.h>
9 #include <display_options.h>
10 #include <init.h>
11 #include <net.h>
12 #include <pci.h>
13 #include <vsprintf.h>
14 #include <asm/processor.h>
15 #include <asm/mmu.h>
16 #include <asm/immap_85xx.h>
17 #include <asm/fsl_pci.h>
18 #include <fsl_ddr_sdram.h>
19 #include <asm/fsl_serdes.h>
20 #include <miiphy.h>
21 #include <linux/delay.h>
22 #include <linux/libfdt.h>
23 #include <fdt_support.h>
24 #include <tsec.h>
25 #include <fsl_mdio.h>
26 #include <netdev.h>
27
28 #include "../common/cadmus.h"
29 #include "../common/eeprom.h"
30 #include "../common/via.h"
31
32 void local_bus_init(void);
33
34 int checkboard (void)
35 {
36         volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
37         volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
38
39         /* PCI slot in USER bits CSR[6:7] by convention. */
40         uint pci_slot = get_pci_slot ();
41
42         uint cpu_board_rev = get_cpu_board_revision ();
43
44         puts("Board: MPC8548CDS");
45         printf(" Carrier Rev: 0x%02x, PCI Slot %d\n",
46                         get_board_version(), pci_slot);
47         printf("       Daughtercard Rev: %d.%d (0x%04x)\n",
48                 MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev),
49                 MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev);
50         /*
51          * Initialize local bus.
52          */
53         local_bus_init ();
54
55         /*
56          * Hack TSEC 3 and 4 IO voltages.
57          */
58         gur->tsec34ioovcr = 0xe7e0;     /*  1110 0111 1110 0xxx */
59
60         ecm->eedr = 0xffffffff;         /* clear ecm errors */
61         ecm->eeer = 0xffffffff;         /* enable ecm errors */
62         return 0;
63 }
64
65 /*
66  * Initialize Local Bus
67  */
68 void
69 local_bus_init(void)
70 {
71         volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
72         volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
73
74         uint clkdiv;
75         sys_info_t sysinfo;
76
77         get_sys_info(&sysinfo);
78         clkdiv = (lbc->lcrr & LCRR_CLKDIV) * 2;
79
80         gur->lbiuiplldcr1 = 0x00078080;
81         if (clkdiv == 16) {
82                 gur->lbiuiplldcr0 = 0x7c0f1bf0;
83         } else if (clkdiv == 8) {
84                 gur->lbiuiplldcr0 = 0x6c0f1bf0;
85         } else if (clkdiv == 4) {
86                 gur->lbiuiplldcr0 = 0x5c0f1bf0;
87         }
88
89         lbc->lcrr |= 0x00030000;
90
91         asm("sync;isync;msync");
92
93         lbc->ltesr = 0xffffffff;        /* Clear LBC error interrupts */
94         lbc->lteir = 0xffffffff;        /* Enable LBC error interrupts */
95 }
96
97 /*
98  * Initialize SDRAM memory on the Local Bus.
99  */
100 void lbc_sdram_init(void)
101 {
102 #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
103
104         uint idx;
105         volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
106         uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
107         uint lsdmr_common;
108
109         puts("LBC SDRAM: ");
110         print_size(CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024,
111                    "\n");
112
113         /*
114          * Setup SDRAM Base and Option Registers
115          */
116         set_lbc_or(2, CONFIG_SYS_OR2_PRELIM);
117         set_lbc_br(2, CONFIG_SYS_BR2_PRELIM);
118         lbc->lbcr = CONFIG_SYS_LBC_LBCR;
119         asm("msync");
120
121         lbc->lsrt = CONFIG_SYS_LBC_LSRT;
122         lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
123         asm("msync");
124
125         /*
126          * MPC8548 uses "new" 15-16 style addressing.
127          */
128         lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
129         lsdmr_common |= LSDMR_BSMA1516;
130
131         /*
132          * Issue PRECHARGE ALL command.
133          */
134         lbc->lsdmr = lsdmr_common | LSDMR_OP_PCHALL;
135         asm("sync;msync");
136         *sdram_addr = 0xff;
137         ppcDcbf((unsigned long) sdram_addr);
138         udelay(100);
139
140         /*
141          * Issue 8 AUTO REFRESH commands.
142          */
143         for (idx = 0; idx < 8; idx++) {
144                 lbc->lsdmr = lsdmr_common | LSDMR_OP_ARFRSH;
145                 asm("sync;msync");
146                 *sdram_addr = 0xff;
147                 ppcDcbf((unsigned long) sdram_addr);
148                 udelay(100);
149         }
150
151         /*
152          * Issue 8 MODE-set command.
153          */
154         lbc->lsdmr = lsdmr_common | LSDMR_OP_MRW;
155         asm("sync;msync");
156         *sdram_addr = 0xff;
157         ppcDcbf((unsigned long) sdram_addr);
158         udelay(100);
159
160         /*
161          * Issue NORMAL OP command.
162          */
163         lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL;
164         asm("sync;msync");
165         *sdram_addr = 0xff;
166         ppcDcbf((unsigned long) sdram_addr);
167         udelay(200);    /* Overkill. Must wait > 200 bus cycles */
168
169 #endif  /* enable SDRAM init */
170 }
171
172 void configure_rgmii(void)
173 {
174         unsigned short temp;
175
176         /* Change the resistors for the PHY */
177         /* This is needed to get the RGMII working for the 1.3+
178          * CDS cards */
179         if (get_board_version() ==  0x13) {
180                 miiphy_write(DEFAULT_MII_NAME,
181                                 TSEC1_PHY_ADDR, 29, 18);
182
183                 miiphy_read(DEFAULT_MII_NAME,
184                                 TSEC1_PHY_ADDR, 30, &temp);
185
186                 temp = (temp & 0xf03f);
187                 temp |= 2 << 9;         /* 36 ohm */
188                 temp |= 2 << 6;         /* 39 ohm */
189
190                 miiphy_write(DEFAULT_MII_NAME,
191                                 TSEC1_PHY_ADDR, 30, temp);
192
193                 miiphy_write(DEFAULT_MII_NAME,
194                                 TSEC1_PHY_ADDR, 29, 3);
195
196                 miiphy_write(DEFAULT_MII_NAME,
197                                 TSEC1_PHY_ADDR, 30, 0x8000);
198         }
199
200         return;
201 }
202
203 int board_eth_init(struct bd_info *bis)
204 {
205 #ifdef CONFIG_TSEC_ENET
206         struct fsl_pq_mdio_info mdio_info;
207         struct tsec_info_struct tsec_info[4];
208         int num = 0;
209
210 #ifdef CONFIG_TSEC1
211         SET_STD_TSEC_INFO(tsec_info[num], 1);
212         num++;
213 #endif
214 #ifdef CONFIG_TSEC2
215         SET_STD_TSEC_INFO(tsec_info[num], 2);
216         num++;
217 #endif
218 #ifdef CONFIG_TSEC3
219         /* initialize TSEC3 only if Carrier is 1.3 or above on CDS */
220         if (get_board_version() >= 0x13) {
221                 SET_STD_TSEC_INFO(tsec_info[num], 3);
222                 tsec_info[num].interface = PHY_INTERFACE_MODE_RGMII_ID;
223                 num++;
224         }
225 #endif
226 #ifdef CONFIG_TSEC4
227         /* initialize TSEC4 only if Carrier is 1.3 or above on CDS */
228         if (get_board_version() >= 0x13) {
229                 SET_STD_TSEC_INFO(tsec_info[num], 4);
230                 tsec_info[num].interface = PHY_INTERFACE_MODE_RGMII_ID;
231                 num++;
232         }
233 #endif
234
235         if (!num) {
236                 printf("No TSECs initialized\n");
237
238                 return 0;
239         }
240
241         mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
242         mdio_info.name = DEFAULT_MII_NAME;
243         fsl_pq_mdio_init(bis, &mdio_info);
244
245         tsec_eth_init(bis, tsec_info, num);
246         configure_rgmii();
247 #endif
248
249         return pci_eth_init(bis);
250 }