blob: 09f973f403cd6ee927bd80b3156b1a1222d7b735 [file] [log] [blame]
Vikas Manocha9fa32b12014-11-18 10:42:22 -08001/*
2 * (C) Copyright 2014
3 * Vikas Manocha, ST Micoelectronics, vikas.manocha@st.com.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <miiphy.h>
10#include <asm/arch/stv0991_periph.h>
11#include <asm/arch/stv0991_defs.h>
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -080012#include <asm/arch/hardware.h>
13#include <asm/arch/gpio.h>
14#include <netdev.h>
15#include <asm/io.h>
Vikas Manocha39e47952014-12-01 12:27:54 -080016#include <dm/platdata.h>
17#include <dm/platform_data/serial_pl01x.h>
Vikas Manocha9fa32b12014-11-18 10:42:22 -080018
19DECLARE_GLOBAL_DATA_PTR;
20
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -080021struct gpio_regs *const gpioa_regs =
22 (struct gpio_regs *) GPIOA_BASE_ADDR;
23
Vikas Manochae0320b72015-05-03 14:10:35 -070024#ifndef CONFIG_OF_CONTROL
Vikas Manocha39e47952014-12-01 12:27:54 -080025static const struct pl01x_serial_platdata serial_platdata = {
26 .base = 0x80406000,
27 .type = TYPE_PL011,
28 .clock = 2700 * 1000,
29};
30
31U_BOOT_DEVICE(stv09911_serials) = {
32 .name = "serial_pl01x",
33 .platdata = &serial_platdata,
34};
Vikas Manochae0320b72015-05-03 14:10:35 -070035#endif
Vikas Manocha39e47952014-12-01 12:27:54 -080036
Vikas Manocha9fa32b12014-11-18 10:42:22 -080037#ifdef CONFIG_SHOW_BOOT_PROGRESS
38void show_boot_progress(int progress)
39{
40 printf("%i\n", progress);
41}
42#endif
43
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -080044void enable_eth_phy(void)
45{
46 /* Set GPIOA_06 pad HIGH (Appli board)*/
47 writel(readl(&gpioa_regs->dir) | 0x40, &gpioa_regs->dir);
48 writel(readl(&gpioa_regs->data) | 0x40, &gpioa_regs->data);
49}
50int board_eth_enable(void)
51{
52 stv0991_pinmux_config(ETH_GPIOB_10_31_C_0_4);
53 clock_setup(ETH_CLOCK_CFG);
54 enable_eth_phy();
55 return 0;
56}
57
Vikas Manocha9fa32b12014-11-18 10:42:22 -080058/*
59 * Miscellaneous platform dependent initialisations
60 */
61int board_init(void)
62{
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -080063 board_eth_enable();
Vikas Manocha9fa32b12014-11-18 10:42:22 -080064 return 0;
65}
66
67int board_uart_init(void)
68{
69 stv0991_pinmux_config(UART_GPIOC_30_31);
70 clock_setup(UART_CLOCK_CFG);
71 return 0;
72}
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -080073
Vikas Manocha9fa32b12014-11-18 10:42:22 -080074#ifdef CONFIG_BOARD_EARLY_INIT_F
75int board_early_init_f(void)
76{
77 board_uart_init();
78 return 0;
79}
80#endif
81
82int dram_init(void)
83{
84 gd->ram_size = PHYS_SDRAM_1_SIZE;
85 return 0;
86}
87
88void dram_init_banksize(void)
89{
90 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
91 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
92}
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -080093
94#ifdef CONFIG_CMD_NET
95int board_eth_init(bd_t *bis)
96{
97 int ret = 0;
98
Simon Glassef48f6d2015-04-05 16:07:34 -060099#if defined(CONFIG_ETH_DESIGNWARE)
Vikas Manocha2ce4eaf2014-11-18 10:42:23 -0800100 u32 interface = PHY_INTERFACE_MODE_MII;
101 if (designware_initialize(GMAC_BASE_ADDR, interface) >= 0)
102 ret++;
103#endif
104 return ret;
105}
106#endif