From 68cd957c62abca7fbb1abfff0f91f4f3b264438d Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Wed, 7 Apr 2021 09:30:41 +0200 Subject: [PATCH] arch: armv7-r: move references from License header for compliance references should be moved after the license header Signed-off-by: Alin Jerpelea --- arch/arm/src/armv7-r/cp15_clean_dcache.S | 21 ++++++++++--------- arch/arm/src/armv7-r/cp15_coherent_dcache.S | 21 ++++++++++--------- arch/arm/src/armv7-r/cp15_flush_dcache.S | 21 ++++++++++--------- arch/arm/src/armv7-r/cp15_invalidate_dcache.S | 21 ++++++++++--------- .../src/armv7-r/cp15_invalidate_dcache_all.S | 21 ++++++++++--------- 5 files changed, 55 insertions(+), 50 deletions(-) diff --git a/arch/arm/src/armv7-r/cp15_clean_dcache.S b/arch/arm/src/armv7-r/cp15_clean_dcache.S index 4acd422fb8..71a9534d8e 100644 --- a/arch/arm/src/armv7-r/cp15_clean_dcache.S +++ b/arch/arm/src/armv7-r/cp15_clean_dcache.S @@ -4,16 +4,8 @@ * Copyright (C) 2015 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * - * References: - * - * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, - * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) - * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", - * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM - * DDI 0406C.b (ID072512) - * - * Portions of this file derive from Atmel sample code for the SAMA5D3 Cortex-A5 - * which also has a modified BSD-style license: + * Portions of this file derive from Atmel sample code for the SAMA5D3 + * Cortex-A5 which also has a modified BSD-style license: * * Copyright (c) 2012, Atmel Corporation * All rights reserved. @@ -47,6 +39,15 @@ * ****************************************************************************/ +/* References: + * + * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, + * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) + * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", + * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM + * DDI 0406C.b (ID072512) + */ + /**************************************************************************** * Included Files ****************************************************************************/ diff --git a/arch/arm/src/armv7-r/cp15_coherent_dcache.S b/arch/arm/src/armv7-r/cp15_coherent_dcache.S index 0fb4ad3466..cb4589452b 100644 --- a/arch/arm/src/armv7-r/cp15_coherent_dcache.S +++ b/arch/arm/src/armv7-r/cp15_coherent_dcache.S @@ -4,16 +4,8 @@ * Copyright (C) 2015, 2017 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * - * References: - * - * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, - * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) - * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", - * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM - * DDI 0406C.b (ID072512) - * - * Portions of this file derive from Atmel sample code for the SAMA5D3 Cortex-A5 - * which also has a modified BSD-style license: + * Portions of this file derive from Atmel sample code for the SAMA5D3 + * Cortex-A5 which also has a modified BSD-style license: * * Copyright (c) 2012, Atmel Corporation * All rights reserved. @@ -47,6 +39,15 @@ * ****************************************************************************/ +/* References: + * + * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, + * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) + * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", + * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM + * DDI 0406C.b (ID072512) + */ + /**************************************************************************** * Included Files ****************************************************************************/ diff --git a/arch/arm/src/armv7-r/cp15_flush_dcache.S b/arch/arm/src/armv7-r/cp15_flush_dcache.S index 7fcf6a70ac..2bdc4e5474 100644 --- a/arch/arm/src/armv7-r/cp15_flush_dcache.S +++ b/arch/arm/src/armv7-r/cp15_flush_dcache.S @@ -4,16 +4,8 @@ * Copyright (C) 2015, 2018 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * - * References: - * - * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, - * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) - * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", - * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM - * DDI 0406C.b (ID072512) - * - * Portions of this file derive from Atmel sample code for the SAMA5D3 Cortex-A5 - * which also has a modified BSD-style license: + * Portions of this file derive from Atmel sample code for the SAMA5D3 + * Cortex-A5 which also has a modified BSD-style license: * * Copyright (c) 2012, Atmel Corporation * All rights reserved. @@ -47,6 +39,15 @@ * ****************************************************************************/ +/* References: + * + * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, + * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) + * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", + * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM + * DDI 0406C.b (ID072512) + */ + /**************************************************************************** * Included Files ****************************************************************************/ diff --git a/arch/arm/src/armv7-r/cp15_invalidate_dcache.S b/arch/arm/src/armv7-r/cp15_invalidate_dcache.S index 121ffe8ba1..67d11603c8 100644 --- a/arch/arm/src/armv7-r/cp15_invalidate_dcache.S +++ b/arch/arm/src/armv7-r/cp15_invalidate_dcache.S @@ -4,16 +4,8 @@ * Copyright (C) 2015 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * - * References: - * - * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, - * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) - * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", - * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM - * DDI 0406C.b (ID072512) - * - * Portions of this file derive from Atmel sample code for the SAMA5D3 Cortex-A5 - * which also has a modified BSD-style license: + * Portions of this file derive from Atmel sample code for the SAMA5D3 + * Cortex-A5 which also has a modified BSD-style license: * * Copyright (c) 2012, Atmel Corporation * All rights reserved. @@ -47,6 +39,15 @@ * ****************************************************************************/ +/* References: + * + * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, + * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) + * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", + * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM + * DDI 0406C.b (ID072512) + */ + /**************************************************************************** * Included Files ****************************************************************************/ diff --git a/arch/arm/src/armv7-r/cp15_invalidate_dcache_all.S b/arch/arm/src/armv7-r/cp15_invalidate_dcache_all.S index 887a6cbe16..53e1f745bb 100644 --- a/arch/arm/src/armv7-r/cp15_invalidate_dcache_all.S +++ b/arch/arm/src/armv7-r/cp15_invalidate_dcache_all.S @@ -4,16 +4,8 @@ * Copyright (C) 2015 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * - * References: - * - * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, - * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) - * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", - * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM - * DDI 0406C.b (ID072512) - * - * Portions of this file derive from Atmel sample code for the SAMA5D3 Cortex-A5 - * which also has a modified BSD-style license: + * Portions of this file derive from Atmel sample code for the SAMA5D3 + * Cortex-A5 which also has a modified BSD-style license: * * Copyright (c) 2012, Atmel Corporation * All rights reserved. @@ -47,6 +39,15 @@ * ****************************************************************************/ +/* References: + * + * "Cortex-A5 MPCore, Technical Reference Manual", Revision: r0p1, + * Copyright (c) 2010 ARM. All rights reserved. ARM DDI 0434B (ID101810) + * "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition", + * Copyright (c) 1996-1998, 2000, 2004-2012 ARM. All rights reserved. ARM + * DDI 0406C.b (ID072512) + */ + /**************************************************************************** * Included Files ****************************************************************************/