summaryrefslogtreecommitdiff
path: root/board/toradex/apalis_t30/apalis_t30.c
blob: dde1b6395253718684ede5b7179a4f816ad9881c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Copyright (c) 2012-2014 Toradex, Inc.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>

#include <asm/arch/gp_padctrl.h>
#include <asm/arch/pinmux.h>
#include <asm/gpio.h>
#include <i2c.h>
#include <netdev.h>

#include "pinmux-config-apalis_t30.h"
#include "../common/configblock.h"

DECLARE_GLOBAL_DATA_PTR;

#define PMU_I2C_ADDRESS		0x2D
#define MAX_I2C_RETRY		3

int arch_misc_init(void)
{
	/* Default memory arguments */
	if (!getenv("memargs")) {
		switch (gd->ram_size) {
		case 0x40000000:
			/* 1 GB */
			setenv("memargs", "vmalloc=128M mem=1012M@2048M "
					  "fbmem=12M@3060M");
			break;
		case 0x7ff00000:
		case 0x80000000:
			/* 2 GB */
			setenv("memargs", "vmalloc=256M mem=2035M@2048M "
					  "fbmem=12M@4083M");
			break;
		default:
			printf("Failed detecting RAM size.\n");
		}
	}

#ifdef CONFIG_TRDX_CFG_BLOCK
	if (read_trdx_cfg_block())
		printf("Missing Apalis config block\n");
#endif

	return 0;
}

/*
 * Routine: pinmux_init
 * Description: Do individual peripheral pinmux configs
 */
void pinmux_init(void)
{
	pinmux_config_pingrp_table(tegra3_pinmux_common,
				   ARRAY_SIZE(tegra3_pinmux_common));

	pinmux_config_pingrp_table(unused_pins_lowpower,
				   ARRAY_SIZE(unused_pins_lowpower));

	/* Initialize any non-default pad configs (APB_MISC_GP regs) */
	pinmux_config_drvgrp_table(apalis_t30_padctrl,
				   ARRAY_SIZE(apalis_t30_padctrl));
}

#ifdef CONFIG_PCI_TEGRA
int tegra_pcie_board_init(void)
{
	unsigned int old_bus;
	u8 addr, data[1];
	int err;

	old_bus = i2c_get_bus_num();

	err = i2c_set_bus_num(0);
	if (err) {
		debug("failed to set I2C bus\n");
		return err;
	}

	/* TPS659110: VDD2_OP_REG = 1.05V */
	data[0] = 0x27;
	addr = 0x25;

	err = i2c_write(PMU_I2C_ADDRESS, addr, 1, data, 1);
	if (err) {
		debug("failed to set VDD supply\n");
		return err;
	}

	/* TPS659110: VDD2_REG 7.5 mV/us, ACTIVE */
	data[0] = 0x0D;
	addr = 0x24;

	err = i2c_write(PMU_I2C_ADDRESS, addr, 1, data, 1);
	if (err) {
		debug("failed to enable VDD supply\n");
		return err;
	}

	/* TPS659110: LDO6_REG = 1.1V, ACTIVE */
	data[0] = 0x0D;
	addr = 0x35;

	err = i2c_write(PMU_I2C_ADDRESS, addr, 1, data, 1);
	if (err) {
		debug("failed to set AVDD supply\n");
		return err;
	}

	i2c_set_bus_num(old_bus);

	return 0;
}

int board_eth_init(bd_t *bis)
{
	return pci_eth_init(bis);
}
#endif /* CONFIG_PCI_TEGRA */