]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-mxs/sys_proto.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / arm / include / asm / arch-mxs / sys_proto.h
1 /*
2  * Freescale i.MX23/i.MX28 specific functions
3  *
4  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5  * on behalf of DENX Software Engineering GmbH
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef __SYS_PROTO_H__
11 #define __SYS_PROTO_H__
12
13 int mxs_reset_block(struct mxs_register_32 *reg);
14 int mxs_wait_mask_set(struct mxs_register_32 *reg,
15                        uint32_t mask,
16                        unsigned int timeout);
17 int mxs_wait_mask_clr(struct mxs_register_32 *reg,
18                        uint32_t mask,
19                        unsigned int timeout);
20
21 int mxsmmc_initialize(bd_t *bis, int id, int (*wp)(int), int (*cd)(int));
22
23 #ifdef CONFIG_SPL_BUILD
24
25 #if defined(CONFIG_MX23)
26 #include <asm/arch/iomux-mx23.h>
27 #elif defined(CONFIG_MX28)
28 #include <asm/arch/iomux-mx28.h>
29 #endif
30
31 void mxs_common_spl_init(const iomux_cfg_t *iomux_setup,
32                         const unsigned int iomux_size);
33 #endif
34
35 struct mxs_pair {
36         uint8_t boot_pads;
37         uint8_t boot_mask;
38         const char *mode;
39 };
40
41 static const struct mxs_pair mxs_boot_modes[] = {
42 #if defined(CONFIG_MX23)
43         { 0x00, 0x0f, "USB" },
44         { 0x01, 0x1f, "I2C, master" },
45         { 0x02, 0x1f, "SSP SPI #1, master, NOR" },
46         { 0x03, 0x1f, "SSP SPI #2, master, NOR" },
47         { 0x04, 0x1f, "NAND" },
48         { 0x08, 0x1f, "SSP SPI #3, master, EEPROM" },
49         { 0x09, 0x1f, "SSP SD/MMC #0" },
50         { 0x0a, 0x1f, "SSP SD/MMC #1" },
51         { 0x00, 0x00, "Reserved/Unknown/Wrong" },
52 #elif defined(CONFIG_MX28)
53         { 0x00, 0x0f, "USB #0" },
54         { 0x01, 0x1f, "I2C #0, master, 3V3" },
55         { 0x11, 0x1f, "I2C #0, master, 1V8" },
56         { 0x02, 0x1f, "SSP SPI #2, master, 3V3 NOR" },
57         { 0x12, 0x1f, "SSP SPI #2, master, 1V8 NOR" },
58         { 0x03, 0x1f, "SSP SPI #3, master, 3V3 NOR" },
59         { 0x13, 0x1f, "SSP SPI #3, master, 1V8 NOR" },
60         { 0x04, 0x1f, "NAND, 3V3" },
61         { 0x14, 0x1f, "NAND, 1V8" },
62         { 0x08, 0x1f, "SSP SPI #3, master, 3V3 EEPROM" },
63         { 0x18, 0x1f, "SSP SPI #3, master, 1V8 EEPROM" },
64         { 0x09, 0x1f, "SSP SD/MMC #0, 3V3" },
65         { 0x19, 0x1f, "SSP SD/MMC #0, 1V8" },
66         { 0x0a, 0x1f, "SSP SD/MMC #1, 3V3" },
67         { 0x1a, 0x1f, "SSP SD/MMC #1, 1V8" },
68         { 0x00, 0x00, "Reserved/Unknown/Wrong" },
69 #endif
70 };
71
72 struct mxs_spl_data {
73         uint8_t         boot_mode_idx;
74         uint32_t        mem_dram_size;
75 };
76
77 int mxs_dram_init(void);
78
79 #endif  /* __SYS_PROTO_H__ */