]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/include/asm/arch-pxa/pxa.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / include / asm / arch-pxa / pxa.h
1 /*
2 * PXA common functions
3 *
4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9 #ifndef __PXA_H__
10 #define __PXA_H__
11
12 #define PXA255_A0 0x00000106
13 #define PXA250_C0 0x00000105
14 #define PXA250_B2 0x00000104
15 #define PXA250_B1 0x00000103
16 #define PXA250_B0 0x00000102
17 #define PXA250_A1 0x00000101
18 #define PXA250_A0 0x00000100
19 #define PXA210_C0 0x00000125
20 #define PXA210_B2 0x00000124
21 #define PXA210_B1 0x00000123
22 #define PXA210_B0 0x00000122
23
24 int cpu_is_pxa25x(void);
25 int cpu_is_pxa27x(void);
26 uint32_t pxa_get_cpu_revision(void);
27 void pxa2xx_dram_init(void);
28
29 #endif /* __PXA_H__ */