Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2004-2008 Freescale Semiconductor, Inc. |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <mpc83xx.h> |
| 8 | |
Mario Six | b47839c | 2019-01-21 09:17:58 +0100 | [diff] [blame] | 9 | #include "lblaw/lblaw.h" |
Mario Six | 1faf95d | 2019-01-21 09:18:03 +0100 | [diff] [blame] | 10 | #include "elbc/elbc.h" |
Mario Six | b47839c | 2019-01-21 09:17:58 +0100 | [diff] [blame] | 11 | |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 12 | DECLARE_GLOBAL_DATA_PTR; |
| 13 | |
| 14 | /* |
| 15 | * Breathe some life into the CPU... |
| 16 | * |
| 17 | * Set up the memory map, |
| 18 | * initialize a bunch of registers, |
| 19 | * initialize the UPM's |
| 20 | */ |
| 21 | void cpu_init_f (volatile immap_t * im) |
| 22 | { |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 23 | /* Pointer is writable since we allocated a register for it */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 24 | gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 25 | |
mario.six@gdsys.cc | 85df7b4 | 2017-01-17 08:33:48 +0100 | [diff] [blame] | 26 | /* global data region was cleared in start.S */ |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 27 | |
| 28 | /* system performance tweaking */ |
| 29 | |
Mario Six | aa50254 | 2019-01-21 09:18:12 +0100 | [diff] [blame] | 30 | #ifndef CONFIG_ACR_PIPE_DEP_UNSET |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 31 | /* Arbiter pipeline depth */ |
| 32 | im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) | |
Mario Six | aa50254 | 2019-01-21 09:18:12 +0100 | [diff] [blame] | 33 | CONFIG_ACR_PIPE_DEP; |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 34 | #endif |
| 35 | |
Mario Six | aa50254 | 2019-01-21 09:18:12 +0100 | [diff] [blame] | 36 | #ifndef CONFIG_ACR_RPTCNT_UNSET |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 37 | /* Arbiter repeat count */ |
| 38 | im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) | |
Mario Six | aa50254 | 2019-01-21 09:18:12 +0100 | [diff] [blame] | 39 | CONFIG_ACR_RPTCNT; |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 40 | #endif |
| 41 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | #ifdef CONFIG_SYS_SPCR_OPT |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 43 | /* Optimize transactions between CSB and other devices */ |
| 44 | im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_OPT) | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT); |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 46 | #endif |
| 47 | |
Robert P. J. Day | cbd618f | 2015-12-16 12:25:42 -0500 | [diff] [blame] | 48 | /* Enable Time Base & Decrementer (so we will have udelay()) */ |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 49 | im->sysconf.spcr |= SPCR_TBEN; |
| 50 | |
| 51 | /* DDR control driver register */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_SYS_DDRCDR |
| 53 | im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR; |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 54 | #endif |
| 55 | /* Output buffer impedance register */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 56 | #ifdef CONFIG_SYS_OBIR |
| 57 | im->sysconf.obir = CONFIG_SYS_OBIR; |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 58 | #endif |
| 59 | |
| 60 | /* |
| 61 | * Memory Controller: |
| 62 | */ |
| 63 | |
| 64 | /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary |
| 65 | * addresses - these have to be modified later when FLASH size |
| 66 | * has been determined |
| 67 | */ |
| 68 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 69 | #if defined(CONFIG_SYS_NAND_BR_PRELIM) \ |
| 70 | && defined(CONFIG_SYS_NAND_OR_PRELIM) \ |
| 71 | && defined(CONFIG_SYS_NAND_LBLAWBAR_PRELIM) \ |
| 72 | && defined(CONFIG_SYS_NAND_LBLAWAR_PRELIM) |
Becky Bruce | 0d4cee1 | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 73 | set_lbc_br(0, CONFIG_SYS_NAND_BR_PRELIM); |
| 74 | set_lbc_or(0, CONFIG_SYS_NAND_OR_PRELIM); |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 75 | im->sysconf.lblaw[0].bar = CONFIG_SYS_NAND_LBLAWBAR_PRELIM; |
| 76 | im->sysconf.lblaw[0].ar = CONFIG_SYS_NAND_LBLAWAR_PRELIM; |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 77 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | #error CONFIG_SYS_NAND_BR_PRELIM, CONFIG_SYS_NAND_OR_PRELIM, CONFIG_SYS_NAND_LBLAWBAR_PRELIM & CONFIG_SYS_NAND_LBLAWAR_PRELIM must be defined |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 79 | #endif |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Get timebase clock frequency (like cpu_clk in Hz) |
| 84 | */ |
| 85 | unsigned long get_tbclk(void) |
| 86 | { |
| 87 | return (gd->bus_clk + 3L) / 4L; |
| 88 | } |
| 89 | |
| 90 | void puts(const char *str) |
| 91 | { |
| 92 | while (*str) |
| 93 | putc(*str++); |
| 94 | } |
Mario Six | cd677ca | 2019-01-21 09:17:52 +0100 | [diff] [blame] | 95 | |
| 96 | ulong get_bus_freq(ulong dummy) |
| 97 | { |
| 98 | volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR; |
| 99 | u8 spmf = (im->clk.spmr & SPMR_SPMF) >> SPMR_SPMF_SHIFT; |
| 100 | |
Mario Six | d10f318 | 2019-01-21 09:17:53 +0100 | [diff] [blame] | 101 | return CONFIG_SYS_CLK_FREQ * spmf; |
Mario Six | cd677ca | 2019-01-21 09:17:52 +0100 | [diff] [blame] | 102 | } |