diff options
author | fishsoupisgood <github@madingley.org> | 2019-04-29 01:17:54 +0100 |
---|---|---|
committer | fishsoupisgood <github@madingley.org> | 2019-05-27 03:43:43 +0100 |
commit | 3f2546b2ef55b661fd8dd69682b38992225e86f6 (patch) | |
tree | 65ca85f13617aee1dce474596800950f266a456c /roms/u-boot/arch/arm/include/asm/arch-pxa/pxa.h | |
download | qemu-master.tar.gz qemu-master.tar.bz2 qemu-master.zip |
Diffstat (limited to 'roms/u-boot/arch/arm/include/asm/arch-pxa/pxa.h')
-rw-r--r-- | roms/u-boot/arch/arm/include/asm/arch-pxa/pxa.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/include/asm/arch-pxa/pxa.h b/roms/u-boot/arch/arm/include/asm/arch-pxa/pxa.h new file mode 100644 index 00000000..d759aea6 --- /dev/null +++ b/roms/u-boot/arch/arm/include/asm/arch-pxa/pxa.h @@ -0,0 +1,29 @@ +/* + * PXA common functions + * + * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __PXA_H__ +#define __PXA_H__ + +#define PXA255_A0 0x00000106 +#define PXA250_C0 0x00000105 +#define PXA250_B2 0x00000104 +#define PXA250_B1 0x00000103 +#define PXA250_B0 0x00000102 +#define PXA250_A1 0x00000101 +#define PXA250_A0 0x00000100 +#define PXA210_C0 0x00000125 +#define PXA210_B2 0x00000124 +#define PXA210_B1 0x00000123 +#define PXA210_B0 0x00000122 + +int cpu_is_pxa25x(void); +int cpu_is_pxa27x(void); +uint32_t pxa_get_cpu_revision(void); +void pxa2xx_dram_init(void); + +#endif /* __PXA_H__ */ |