blob: 9ab95f5c93f984da42334d2c86d46d66ce0cfc2f [file] [log] [blame]
Tim Harvey552c3582014-03-06 07:46:30 -08001/*
2 * Copyright (C) 2013 Gateworks Corporation
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 *
6 * Refer doc/README.imximage for more details about how-to configure
7 * and create imximage boot image
8 *
9 * The syntax is taken as close as possible with the kwbimage
10 */
11
12/* image version */
13IMAGE_VERSION 2
14
15/*
16 * Boot Device : one of
17 * spi, sd, nand, sata
18 */
19#ifdef CONFIG_SPI_FLASH
20BOOT_FROM spi
21#else
22BOOT_FROM nand
23#endif
24
25#define __ASSEMBLY__
26#include <config.h>
Tim Harvey552c3582014-03-06 07:46:30 -080027#include "asm/arch/iomux.h"
28#include "asm/arch/crm_regs.h"
Tim Harvey552c3582014-03-06 07:46:30 -080029#include "clocks.cfg"