aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-spear/spr_ssp.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-05-22 08:47:14 -0400
committerTom Rini <trini@konsulko.com>2021-07-07 22:22:42 -0400
commit570c3dcfc153e0f18bd897630236da6605dcbe7e (patch)
treeed107cfe6a18ec50aadb7cec478be61a60dba9f8 /arch/arm/include/asm/arch-spear/spr_ssp.h
parentd7221d0d660755fd395734afa4cce2948e5e5fa8 (diff)
downloadu-boot-570c3dcfc153e0f18bd897630236da6605dcbe7e.zip
u-boot-570c3dcfc153e0f18bd897630236da6605dcbe7e.tar.gz
u-boot-570c3dcfc153e0f18bd897630236da6605dcbe7e.tar.bz2
arm: Remove spear600 boards and the rest of SPEAr support
These boards have not been converted to CONFIG_DM_USB by the deadline and is also missing conversion to CONFIG_DM. Remove them. As this is the last of the SPEAr platforms, so remove the rest of the remaining support as well. Cc: Vipin Kumar <vipin.kumar@st.com> Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/include/asm/arch-spear/spr_ssp.h')
-rw-r--r--arch/arm/include/asm/arch-spear/spr_ssp.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/arch/arm/include/asm/arch-spear/spr_ssp.h b/arch/arm/include/asm/arch-spear/spr_ssp.h
deleted file mode 100644
index 088d34b..0000000
--- a/arch/arm/include/asm/arch-spear/spr_ssp.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * Copyright (C) 2012 Stefan Roese <sr@denx.de>
- */
-
-#ifndef _SPR_SSP_H
-#define _SPR_SSP_H
-
-struct ssp_regs {
- u32 sspcr0;
- u32 sspcr1;
- u32 sspdr;
- u32 sspsr;
- u32 sspcpsr;
- u32 sspimsc;
- u32 sspicr;
- u32 sspdmacr;
-};
-
-#define SSPCR0_FRF_MOT_SPI 0x0000
-#define SSPCR0_DSS_16BITS 0x000f
-
-#define SSPCR1_SSE 0x0002
-
-#define SSPSR_TNF 0x2
-#define SSPSR_TFE 0x1
-
-#endif