Prepare v2023.10
[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 *)(CFG_SYS_MPC85xx_GUTS_ADDR);
37         volatile ccsr_local_ecm_t *ecm = (void *)(CFG_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 *)(CFG_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 *)CFG_SYS_LBC_SDRAM_BASE;
107         uint lsdmr_common;
108
109         puts("LBC SDRAM: ");
110         print_size(CFG_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 = CFG_SYS_LBC_LBCR;
119         asm("msync");
120
121         lbc->lsrt = CFG_SYS_LBC_LSRT;
122         lbc->mrtpr = CFG_SYS_LBC_MRTPR;
123         asm("msync");
124
125         /*
126          * MPC8548 uses "new" 15-16 style addressing.
127          */
128         lsdmr_common = CFG_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 }