Merge branch 'next' of https://gitlab.denx.de/u-boot/custodians/u-boot-marvell into...
[platform/kernel/u-boot.git] / include / configs / usb_a9263.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2007-2013
4  * Stelian Pop <stelian.pop@leadtechdesign.com>
5  * Lead Tech Design <www.leadtechdesign.com>
6  * Thomas Petazzoni, Free Electrons, <thomas.petazzoni@free-electrons.com>
7  * Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
8  *
9  * Settings for Calao USB-A9263 board
10  *
11  * U-Boot image has to be less than 200704 bytes, otherwise at91bootstrap
12  * installed on board will not be able to load it properly.
13  */
14
15 #ifndef __CONFIG_H
16 #define __CONFIG_H
17 #include <asm/hardware.h>
18
19 /* ARM asynchronous clock */
20 #define CONFIG_SYS_AT91_MAIN_CLOCK      12000000        /* 12 MHz crystal */
21 #define CONFIG_SYS_AT91_SLOW_CLOCK      32768
22
23 #define CONFIG_MACH_TYPE                MACH_TYPE_USB_A9263
24
25 #define CONFIG_CMDLINE_TAG      /* enable passing of ATAGs      */
26 #define CONFIG_SETUP_MEMORY_TAGS
27 #define CONFIG_INITRD_TAG
28
29 /*
30  * Hardware drivers
31  */
32 /*
33  * BOOTP options
34  */
35 #define CONFIG_BOOTP_BOOTFILESIZE
36
37 /* SDRAM */
38 #define CONFIG_SYS_SDRAM_BASE           ATMEL_BASE_CS1
39 #define CONFIG_SYS_SDRAM_SIZE           0x04000000
40
41 #define CONFIG_SYS_INIT_SP_ADDR \
42         (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
43
44 /* NAND flash */
45 #ifdef CONFIG_CMD_NAND
46 #define CONFIG_SYS_MAX_NAND_DEVICE              1
47 #define CONFIG_SYS_NAND_BASE                    ATMEL_BASE_CS3
48 /* our ALE is AD21 */
49 #define CONFIG_SYS_NAND_MASK_ALE                (1 << 21)
50 /* our CLE is AD22 */
51 #define CONFIG_SYS_NAND_MASK_CLE                (1 << 22)
52 #define CONFIG_SYS_NAND_ENABLE_PIN              GPIO_PIN_PD(15)
53 #define CONFIG_SYS_NAND_READY_PIN               GPIO_PIN_PA(22)
54 #endif
55
56 /* Ethernet */
57 #define CONFIG_MACB
58 #define CONFIG_RMII
59 #define CONFIG_NET_RETRY_COUNT                  20
60 #define CONFIG_AT91_WANTS_COMMON_PHY
61
62 /* USB */
63 #ifdef CONFIG_CMD_USB
64 #define CONFIG_USB_ATMEL
65 #define CONFIG_USB_OHCI_NEW
66 #define CONFIG_SYS_USB_OHCI_CPU_INIT
67 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x00a00000
68 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "at91sam9263"
69 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
70 #endif
71
72 /* bootstrap + u-boot + env + linux in dataflash on CS0 */
73 #define CONFIG_BOOTCOMMAND      "nboot 21000000 0"
74 #define CONFIG_EXTRA_ENV_SETTINGS \
75         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
76
77 #endif