Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2007 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * (C) Copyright 2000 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 85d6531 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 10 | #include <clock_legacy.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 11 | #include <asm/global_data.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 12 | #include <linux/libfdt.h> |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 13 | #include <fdt_support.h> |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 14 | #include <asm/processor.h> |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 15 | |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 16 | extern void ft_qe_setup(void *blob); |
| 17 | |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
Heiko Schocher | 466924f | 2010-02-18 08:08:25 +0100 | [diff] [blame] | 20 | #if defined(CONFIG_BOOTCOUNT_LIMIT) && \ |
Mario Six | 9164bdd | 2019-01-21 09:17:25 +0100 | [diff] [blame] | 21 | (defined(CONFIG_QE) && !defined(CONFIG_ARCH_MPC831X)) |
Zhao Qiang | 978679d | 2014-06-03 16:27:07 +0800 | [diff] [blame] | 22 | #include <linux/immap_qe.h> |
Heiko Schocher | d2c4f3a | 2009-02-24 11:30:51 +0100 | [diff] [blame] | 23 | |
| 24 | void fdt_fixup_muram (void *blob) |
| 25 | { |
| 26 | ulong data[2]; |
| 27 | |
| 28 | data[0] = 0; |
| 29 | data[1] = QE_MURAM_SIZE - 2 * sizeof(unsigned long); |
Heiko Schocher | 0b00074 | 2009-04-24 06:50:45 +0200 | [diff] [blame] | 30 | do_fixup_by_compat(blob, "fsl,qe-muram-data", "reg", |
| 31 | data, sizeof (data), 0); |
Heiko Schocher | d2c4f3a | 2009-02-24 11:30:51 +0100 | [diff] [blame] | 32 | } |
| 33 | #endif |
| 34 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 35 | void ft_cpu_setup(void *blob, struct bd_info *bd) |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 36 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 37 | immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 38 | int spridr = immr->sysconf.spridr; |
| 39 | |
| 40 | /* |
| 41 | * delete crypto node if not on an E-processor |
| 42 | * initial revisions of the MPC834xE/6xE have the original SEC 2.0. |
| 43 | * EA revisions got the SEC uprevved to 2.4 but since the default device |
| 44 | * tree contains SEC 2.0 properties we uprev them here. |
| 45 | */ |
| 46 | if (!IS_E_PROCESSOR(spridr)) |
| 47 | fdt_fixup_crypto_node(blob, 0); |
| 48 | else if (IS_E_PROCESSOR(spridr) && |
| 49 | (SPR_FAMILY(spridr) == SPR_834X_FAMILY || |
| 50 | SPR_FAMILY(spridr) == SPR_836X_FAMILY) && |
| 51 | REVID_MAJOR(spridr) >= 2) |
| 52 | fdt_fixup_crypto_node(blob, 0x0204); |
| 53 | |
Mario Six | 9164bdd | 2019-01-21 09:17:25 +0100 | [diff] [blame] | 54 | #ifdef CONFIG_ARCH_MPC8313 |
Kim Phillips | 3b1b144 | 2009-10-12 11:06:19 -0500 | [diff] [blame] | 55 | /* |
| 56 | * mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1 |
| 57 | * h/w (see AN3545). The base device tree in use has rev. 1 ID numbers, |
| 58 | * so if on Rev. 2 (and higher) h/w, we fix them up here |
| 59 | */ |
| 60 | if (REVID_MAJOR(immr->sysconf.spridr) >= 2) { |
| 61 | int nodeoffset, path; |
| 62 | const char *prop; |
| 63 | |
| 64 | nodeoffset = fdt_path_offset(blob, "/aliases"); |
| 65 | if (nodeoffset >= 0) { |
Kim Phillips | 3b1b144 | 2009-10-12 11:06:19 -0500 | [diff] [blame] | 66 | prop = fdt_getprop(blob, nodeoffset, "ethernet0", NULL); |
| 67 | if (prop) { |
| 68 | u32 tmp[] = { 32, 0x8, 33, 0x8, 34, 0x8 }; |
| 69 | |
| 70 | path = fdt_path_offset(blob, prop); |
Kim Phillips | b5c312a | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 71 | prop = fdt_getprop(blob, path, "interrupts", |
| 72 | NULL); |
Kim Phillips | 3b1b144 | 2009-10-12 11:06:19 -0500 | [diff] [blame] | 73 | if (prop) |
| 74 | fdt_setprop(blob, path, "interrupts", |
| 75 | &tmp, sizeof(tmp)); |
| 76 | } |
Kim Phillips | 3b1b144 | 2009-10-12 11:06:19 -0500 | [diff] [blame] | 77 | prop = fdt_getprop(blob, nodeoffset, "ethernet1", NULL); |
| 78 | if (prop) { |
| 79 | u32 tmp[] = { 35, 0x8, 36, 0x8, 37, 0x8 }; |
| 80 | |
| 81 | path = fdt_path_offset(blob, prop); |
Kim Phillips | b5c312a | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 82 | prop = fdt_getprop(blob, path, "interrupts", |
| 83 | NULL); |
Kim Phillips | 3b1b144 | 2009-10-12 11:06:19 -0500 | [diff] [blame] | 84 | if (prop) |
| 85 | fdt_setprop(blob, path, "interrupts", |
| 86 | &tmp, sizeof(tmp)); |
| 87 | } |
Kim Phillips | 3b1b144 | 2009-10-12 11:06:19 -0500 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | #endif |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 91 | |
| 92 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 93 | "timebase-frequency", (bd->bi_busfreq / 4), 1); |
| 94 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 95 | "bus-frequency", bd->bi_busfreq, 1); |
| 96 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 97 | "clock-frequency", gd->arch.core_clk, 1); |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 98 | do_fixup_by_prop_u32(blob, "device_type", "soc", 4, |
| 99 | "bus-frequency", bd->bi_busfreq, 1); |
Anton Vorontsov | 3114a9b | 2008-03-24 20:47:09 +0300 | [diff] [blame] | 100 | do_fixup_by_compat_u32(blob, "fsl,soc", |
| 101 | "bus-frequency", bd->bi_busfreq, 1); |
| 102 | do_fixup_by_compat_u32(blob, "fsl,soc", |
| 103 | "clock-frequency", bd->bi_busfreq, 1); |
| 104 | do_fixup_by_compat_u32(blob, "fsl,immr", |
| 105 | "bus-frequency", bd->bi_busfreq, 1); |
| 106 | do_fixup_by_compat_u32(blob, "fsl,immr", |
| 107 | "clock-frequency", bd->bi_busfreq, 1); |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 108 | #ifdef CONFIG_QE |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 109 | ft_qe_setup(blob); |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 110 | #endif |
| 111 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 112 | #ifdef CONFIG_SYS_NS16550 |
Mario Six | a3a8d0c | 2019-01-21 09:18:06 +0100 | [diff] [blame] | 113 | do_fixup_by_compat_u32(blob, "ns16550", |
| 114 | "clock-frequency", get_serial_clock(), 1); |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 115 | #endif |
| 116 | |
Stefan Roese | a13a2aa | 2020-08-12 13:16:36 +0200 | [diff] [blame] | 117 | fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size); |
Heiko Schocher | d2c4f3a | 2009-02-24 11:30:51 +0100 | [diff] [blame] | 118 | |
Heiko Schocher | 04e3b3a | 2014-01-25 07:53:47 +0100 | [diff] [blame] | 119 | #if defined(CONFIG_BOOTCOUNT_LIMIT) && \ |
Mario Six | 9164bdd | 2019-01-21 09:17:25 +0100 | [diff] [blame] | 120 | (defined(CONFIG_QE) && !defined(CONFIG_ARCH_MPC831X)) |
Heiko Schocher | d2c4f3a | 2009-02-24 11:30:51 +0100 | [diff] [blame] | 121 | fdt_fixup_muram (blob); |
| 122 | #endif |
Kim Phillips | fd47a74 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 123 | } |