]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-exynos/spl.h
Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
[karo-tx-uboot.git] / arch / arm / include / asm / arch-exynos / spl.h
1 /*
2  * Copyright (c) 2012 The Chromium OS Authors.
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20  * MA 02111-1307 USA
21  */
22
23 #ifndef __ASM_ARCH_EXYNOS_SPL_H__
24 #define __ASM_ARCH_EXYNOS_SPL_H__
25
26 #include <asm/arch-exynos/dmc.h>
27
28 enum boot_mode {
29         /*
30          * Assign the OM pin values for respective boot modes.
31          * Exynos4 does not support spi boot and the mmc boot OM
32          * pin values are the same across Exynos4 and Exynos5.
33          */
34         BOOT_MODE_MMC = 4,
35         BOOT_MODE_SERIAL = 20,
36         /* Boot based on Operating Mode pin settings */
37         BOOT_MODE_OM = 32,
38         BOOT_MODE_USB,  /* Boot using USB download */
39 };
40
41 #ifndef __ASSEMBLY__
42 /* Parameters of early board initialization in SPL */
43 struct spl_machine_param {
44         /* Add fields as and when required */
45         u32             signature;
46         u32             version;        /* Version number */
47         u32             size;           /* Size of block */
48         /**
49          * Parameters we expect, in order, terminated with \0. Each parameter
50          * is a single character representing one 32-bit word in this
51          * structure.
52          *
53          * Valid characters in this string are:
54          *
55          * Code         Name
56          * v            mem_iv_size
57          * m            mem_type
58          * u            uboot_size
59          * b            boot_source
60          * f            frequency_mhz (memory frequency in MHz)
61          * a            ARM clock frequency in MHz
62          * s            serial base address
63          * i            i2c base address for early access (meant for PMIC)
64          * r            board rev GPIO numbers used to read board revision
65          *                      (lower halfword=bit 0, upper=bit 1)
66          * M            Memory Manufacturer name
67          * \0           termination
68          */
69         char            params[12];     /* Length must be word-aligned */
70         u32             mem_iv_size;    /* Memory channel interleaving size */
71         enum ddr_mode   mem_type;       /* Type of on-board memory */
72         /*
73          * U-boot size - The iROM mmc copy function used by the SPL takes a
74          * block count paramter to describe the u-boot size unlike the spi
75          * boot copy function which just uses the u-boot size directly. Align
76          * the u-boot size to block size (512 bytes) when populating the SPL
77          * table only for mmc boot.
78          */
79         u32             uboot_size;
80         enum boot_mode  boot_source;    /* Boot device */
81         enum mem_manuf  mem_manuf;      /* Memory Manufacturer */
82         unsigned        frequency_mhz;  /* Frequency of memory in MHz */
83         unsigned        arm_freq_mhz;   /* ARM Frequency in MHz */
84         u32             serial_base;    /* Serial base address */
85         u32             i2c_base;       /* i2c base address */
86 } __attribute__((__packed__));
87 #endif
88
89 /**
90  * Validate signature and return a pointer to the parameter table.  If the
91  * signature is invalid, call panic() and never return.
92  *
93  * @return pointer to the parameter table if signature matched or never return.
94  */
95 struct spl_machine_param *spl_get_machine_params(void);
96
97 #endif /* __ASM_ARCH_EXYNOS_SPL_H__ */