Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sebastien Bourdelin | d9e268e | 2016-11-08 12:18:07 -0500 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Savoir-faire Linux Inc. |
| 4 | * |
| 5 | * Author: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> |
| 6 | * |
| 7 | * Based on work from TS7680 code by: |
| 8 | * Kris Bahnsen <kris@embeddedarm.com> |
| 9 | * Mark Featherston <mark@embeddedarm.com> |
| 10 | * https://github.com/embeddedarm/u-boot/tree/master/board/technologic/ts7680 |
| 11 | * |
| 12 | * Derived from MX28EVK code by |
| 13 | * Freescale Semiconductor, Inc. |
Sebastien Bourdelin | d9e268e | 2016-11-08 12:18:07 -0500 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <common.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 17 | #include <init.h> |
Sebastien Bourdelin | d9e268e | 2016-11-08 12:18:07 -0500 | [diff] [blame] | 18 | #include <asm/gpio.h> |
| 19 | #include <asm/io.h> |
| 20 | #include <asm/arch/imx-regs.h> |
| 21 | #include <asm/arch/iomux-mx28.h> |
| 22 | #include <asm/arch/clock.h> |
| 23 | #include <asm/arch/sys_proto.h> |
| 24 | #include <linux/mii.h> |
| 25 | #include <miiphy.h> |
| 26 | #include <netdev.h> |
| 27 | #include <errno.h> |
| 28 | |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
| 31 | int board_early_init_f(void) |
| 32 | { |
| 33 | /* IO0 clock at 480MHz */ |
| 34 | mxs_set_ioclk(MXC_IOCLK0, 480000); |
| 35 | /* IO1 clock at 480MHz */ |
| 36 | mxs_set_ioclk(MXC_IOCLK1, 480000); |
| 37 | |
| 38 | /* SSP0 clocks at 96MHz */ |
| 39 | mxs_set_sspclk(MXC_SSPCLK0, 96000, 0); |
| 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | int dram_init(void) |
| 45 | { |
| 46 | return mxs_dram_init(); |
| 47 | } |
| 48 | |
| 49 | int board_init(void) |
| 50 | { |
| 51 | /* Adress of boot parameters */ |
| 52 | gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; |
| 53 | |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | #ifdef CONFIG_CMD_MMC |
| 58 | static int ts4600_mmc_cd(int id) |
| 59 | { |
| 60 | return 1; |
| 61 | } |
| 62 | |
| 63 | int board_mmc_init(bd_t *bis) |
| 64 | { |
| 65 | int ret; |
| 66 | |
| 67 | mxs_iomux_setup_pad(MX28_PAD_PWM3__GPIO_3_28); |
| 68 | |
| 69 | /* Power-on SD */ |
| 70 | gpio_direction_output(MX28_PAD_PWM3__GPIO_3_28, 1); |
| 71 | udelay(1000); |
| 72 | gpio_direction_output(MX28_PAD_PWM3__GPIO_3_28, 0); |
| 73 | |
| 74 | /* SD card */ |
| 75 | ret = mxsmmc_initialize(bis, 0, NULL, ts4600_mmc_cd); |
| 76 | if(ret != 0) { |
| 77 | printf("SD controller initialized with %d\n", ret); |
| 78 | } |
| 79 | |
| 80 | return ret; |
| 81 | } |
| 82 | #endif |
| 83 | |
| 84 | int checkboard(void) |
| 85 | { |
| 86 | puts("Board: TS4600\n"); |
| 87 | |
| 88 | return 0; |
| 89 | } |