~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/arch/arm/include/asm/arch-am33xx/omap.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * omap.h
 
3
 *
 
4
 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
 
5
 *
 
6
 * Author:
 
7
 *      Chandan Nath <chandan.nath@ti.com>
 
8
 *
 
9
 * Derived from OMAP4 work by
 
10
 *      Aneesh V <aneesh@ti.com>
 
11
 *
 
12
 * SPDX-License-Identifier:     GPL-2.0+
 
13
 */
 
14
 
 
15
#ifndef _OMAP_H_
 
16
#define _OMAP_H_
 
17
 
 
18
#ifdef CONFIG_AM33XX
 
19
#define NON_SECURE_SRAM_START   0x402F0400
 
20
#define NON_SECURE_SRAM_END     0x40310000
 
21
#define SRAM_SCRATCH_SPACE_ADDR 0x4030B800
 
22
#elif defined(CONFIG_TI81XX)
 
23
#define NON_SECURE_SRAM_START   0x40300000
 
24
#define NON_SECURE_SRAM_END     0x40320000
 
25
#define SRAM_SCRATCH_SPACE_ADDR 0x4031B800
 
26
#elif defined(CONFIG_AM43XX)
 
27
#define NON_SECURE_SRAM_START   0x402F0400
 
28
#define NON_SECURE_SRAM_END     0x40340000
 
29
#define SRAM_SCRATCH_SPACE_ADDR 0x40337C00
 
30
#define AM4372_BOARD_NAME_START SRAM_SCRATCH_SPACE_ADDR
 
31
#define AM4372_BOARD_NAME_END   SRAM_SCRATCH_SPACE_ADDR + 0xC
 
32
#define QSPI_BASE              0x47900000
 
33
#endif
 
34
#endif