Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
| 9 | #include <netdev.h> |
| 10 | #include <linux/compiler.h> |
| 11 | #include <asm/mmu.h> |
| 12 | #include <asm/processor.h> |
| 13 | #include <asm/cache.h> |
| 14 | #include <asm/immap_85xx.h> |
| 15 | #include <asm/fsl_law.h> |
| 16 | #include <asm/fsl_serdes.h> |
| 17 | #include <asm/fsl_portals.h> |
| 18 | #include <asm/fsl_liodn.h> |
| 19 | #include <fm_eth.h> |
Tang Yuantian | 5303a3d | 2014-04-17 15:33:45 +0800 | [diff] [blame] | 20 | #include <asm/mpc85xx_gpio.h> |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 21 | |
| 22 | #include "t104xrdb.h" |
Prabhakar Kushwaha | 55153d6 | 2014-04-03 16:50:05 +0530 | [diff] [blame] | 23 | #include "cpld.h" |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
| 27 | int checkboard(void) |
| 28 | { |
| 29 | struct cpu_type *cpu = gd->arch.cpu; |
Prabhakar Kushwaha | 55153d6 | 2014-04-03 16:50:05 +0530 | [diff] [blame] | 30 | u8 sw; |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 31 | |
| 32 | printf("Board: %sRDB\n", cpu->name); |
Prabhakar Kushwaha | 55153d6 | 2014-04-03 16:50:05 +0530 | [diff] [blame] | 33 | printf("Board rev: 0x%02x CPLD ver: 0x%02x, ", |
| 34 | CPLD_READ(hw_ver), CPLD_READ(sw_ver)); |
| 35 | |
| 36 | sw = CPLD_READ(flash_ctl_status); |
| 37 | sw = ((sw & CPLD_LBMAP_MASK) >> CPLD_LBMAP_SHIFT); |
| 38 | |
| 39 | if (sw <= 7) |
| 40 | printf("vBank: %d\n", sw); |
| 41 | else |
| 42 | printf("Unsupported Bank=%x\n", sw); |
| 43 | |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | int board_early_init_r(void) |
| 48 | { |
| 49 | #ifdef CONFIG_SYS_FLASH_BASE |
| 50 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 51 | int flash_esel = find_tlb_idx((void *)flashbase, 1); |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Remap Boot flash region to caching-inhibited |
| 55 | * so that flash can be erased properly. |
| 56 | */ |
| 57 | |
| 58 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
| 59 | flush_dcache(); |
| 60 | invalidate_icache(); |
| 61 | |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 62 | if (flash_esel == -1) { |
| 63 | /* very unlikely unless something is messed up */ |
| 64 | puts("Error: Could not find TLB for FLASH BASE\n"); |
| 65 | flash_esel = 2; /* give our best effort to continue */ |
| 66 | } else { |
| 67 | /* invalidate existing TLB entry for flash */ |
| 68 | disable_tlb(flash_esel); |
| 69 | } |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 70 | |
| 71 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, |
| 72 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 73 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); |
| 74 | #endif |
| 75 | set_liodns(); |
| 76 | #ifdef CONFIG_SYS_DPAA_QBMAN |
| 77 | setup_portals(); |
| 78 | #endif |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | int misc_init_r(void) |
| 84 | { |
| 85 | return 0; |
| 86 | } |
| 87 | |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame^] | 88 | int ft_board_setup(void *blob, bd_t *bd) |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 89 | { |
| 90 | phys_addr_t base; |
| 91 | phys_size_t size; |
| 92 | |
| 93 | ft_cpu_setup(blob, bd); |
| 94 | |
| 95 | base = getenv_bootm_low(); |
| 96 | size = getenv_bootm_size(); |
| 97 | |
| 98 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 99 | |
| 100 | #ifdef CONFIG_PCI |
| 101 | pci_of_setup(blob, bd); |
| 102 | #endif |
| 103 | |
| 104 | fdt_fixup_liodn(blob); |
| 105 | |
| 106 | #ifdef CONFIG_HAS_FSL_DR_USB |
| 107 | fdt_fixup_dr_usb(blob, bd); |
| 108 | #endif |
| 109 | |
| 110 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 111 | fdt_fixup_fman_ethernet(blob); |
| 112 | #endif |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame^] | 113 | |
| 114 | return 0; |
Priyanka Jain | 062ef1a | 2013-10-18 17:19:06 +0530 | [diff] [blame] | 115 | } |
Tang Yuantian | 5303a3d | 2014-04-17 15:33:45 +0800 | [diff] [blame] | 116 | |
| 117 | #ifdef CONFIG_DEEP_SLEEP |
| 118 | void board_mem_sleep_setup(void) |
| 119 | { |
Tang Yuantian | 0f1fa36 | 2014-05-07 10:25:06 +0800 | [diff] [blame] | 120 | /* does not provide HW signals for power management */ |
| 121 | CPLD_WRITE(misc_ctl_status, (CPLD_READ(misc_ctl_status) & ~0x40)); |
Tang Yuantian | 5303a3d | 2014-04-17 15:33:45 +0800 | [diff] [blame] | 122 | /* Disable MCKE isolation */ |
| 123 | gpio_set_value(2, 0); |
| 124 | udelay(1); |
| 125 | } |
| 126 | #endif |