public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: edk2-devel@lists.01.org
Cc: leif.lindholm@linaro.org, Ard Biesheuvel <ard.biesheuvel@linaro.org>
Subject: [PATCH v2 08/13] ArmPlatformPkg: remove unused PL301Axi driver
Date: Mon,  4 Dec 2017 22:22:38 +0000	[thread overview]
Message-ID: <20171204222243.15950-9-ard.biesheuvel@linaro.org> (raw)
In-Reply-To: <20171204222243.15950-1-ard.biesheuvel@linaro.org>

No platforms use this driver so remove it.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by-if-no-comments-by-15-Dec: Leif Lindholm <leif.lindholm@linaro.org>
---
 ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.c   | 108 --------------------
 ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.inf |  27 -----
 ArmPlatformPkg/Include/Drivers/PL301Axi.h    |  21 ----
 3 files changed, 156 deletions(-)

diff --git a/ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.c b/ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.c
deleted file mode 100644
index 8600721c581f..000000000000
--- a/ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.c
+++ /dev/null
@@ -1,108 +0,0 @@
-/** @file
-*
-*  Copyright (c) 2011, ARM Limited. All rights reserved.
-*
-*  This program and the accompanying materials
-*  are licensed and made available under the terms and conditions of the BSD License
-*  which accompanies this distribution.  The full text of the license may be found at
-*  http://opensource.org/licenses/bsd-license.php
-*
-*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-*
-**/
-
-#include <Library/IoLib.h>
-#include <Library/DebugLib.h>
-
-#define PL301_QOS_TIDEMARK_MI_0                  0x400
-#define PL301_QOS_ACCESSCONTROL_MI_0             0x404
-
-#define PL301_QOS_TIDEMARK_MI_1                  0x420
-#define PL301_QOS_ACCESSCONTROL_MI_1             0x424
-
-#define PL301_QOS_TIDEMARK_MI_2                  0x440
-#define PL301_QOS_ACCESSCONTROL_MI_2             0x444
-
-#define PL301_AR_ARB_MI_0                        0x408
-#define PL301_AW_ARB_MI_0                        0x40C
-
-#define PL301_AR_ARB_MI_1                        0x428
-#define PL301_AW_ARB_MI_1                        0x42C
-
-#define PL301_AR_ARB_MI_2                        0x448
-#define PL301_AW_ARB_MI_2                        0x44C
-
-#define PL301_MI_1_OFFSET                        0x20
-#define PL301_MI_2_OFFSET                        0x40
-#define PL301_MI_3_OFFSET                        0x60
-#define PL301_MI_4_OFFSET                        0x80
-#define PL301_MI_5_OFFSET                        0xa0
-
-#define V2P_CA9_FAXI_MI0_TIDEMARK_VAL            0x6
-#define V2P_CA9_FAXI_MI0_ACCESSCNTRL_VAL         0x1
-
-#define V2P_CA9_FAXI_MI1_TIDEMARK_VAL            0x6
-#define V2P_CA9_FAXI_MI1_ACCESSCNTRL_VAL         0x1
-
-#define V2P_CA9_FAXI_MI2_TIDEMARK_VAL            0x6
-#define V2P_CA9_FAXI_MI2_ACCESSCNTRL_VAL         0x1
-
-
-#define FAxiWriteReg(reg,val)                    MmioWrite32(FAxiBase + reg, val)
-#define FAxiReadReg(reg)                         MmioRead32(FAxiBase + reg)
-
-// IN FAxiBase
-// Initialize PL301 Dynamic Memory Controller
-VOID PL301AxiInit(UINTN FAxiBase) {
-    // Configure Tidemark Register for Master Port 0 (MI 0)
-    FAxiWriteReg(PL301_QOS_TIDEMARK_MI_0, V2P_CA9_FAXI_MI0_TIDEMARK_VAL);
-
-    // Configure the Access Control Register (MI 0)
-    FAxiWriteReg(PL301_QOS_ACCESSCONTROL_MI_0, V2P_CA9_FAXI_MI0_ACCESSCNTRL_VAL);
-
-    // MP0
-    // Set priority for Read
-    FAxiWriteReg(PL301_AR_ARB_MI_0, 0x00000100);
-    FAxiWriteReg(PL301_AR_ARB_MI_0, 0x01000200);
-    FAxiWriteReg(PL301_AR_ARB_MI_0, 0x02000200);
-    FAxiWriteReg(PL301_AR_ARB_MI_0, 0x03000200);
-    FAxiWriteReg(PL301_AR_ARB_MI_0, 0x04000200);
-
-    // Set priority for Write
-    FAxiWriteReg(PL301_AW_ARB_MI_0, 0x00000100);
-    FAxiWriteReg(PL301_AW_ARB_MI_0, 0x01000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_0, 0x02000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_0, 0x03000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_0, 0x04000200);
-
-    // MP1
-    // Set priority for Read
-    FAxiWriteReg(PL301_AR_ARB_MI_1, 0x00000100);
-    FAxiWriteReg(PL301_AR_ARB_MI_1, 0x01000200);
-    FAxiWriteReg(PL301_AR_ARB_MI_1, 0x02000200);
-    FAxiWriteReg(PL301_AR_ARB_MI_1, 0x03000200);
-    FAxiWriteReg(PL301_AR_ARB_MI_1, 0x04000200);
-
-    // Set priority for Write
-    FAxiWriteReg(PL301_AW_ARB_MI_1, 0x00000100);
-    FAxiWriteReg(PL301_AW_ARB_MI_1, 0x01000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_1, 0x02000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_1, 0x03000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_1, 0x04000200);
-
-    // MP2
-    // Set priority for Read
-    FAxiWriteReg(PL301_AR_ARB_MI_2, 0x00000100);
-    FAxiWriteReg(PL301_AR_ARB_MI_2, 0x01000100);
-    FAxiWriteReg(PL301_AR_ARB_MI_2, 0x02000100);
-    FAxiWriteReg(PL301_AR_ARB_MI_2, 0x03000100);
-    FAxiWriteReg(PL301_AR_ARB_MI_2, 0x04000100);
-
-    // Set priority for Write
-    FAxiWriteReg(PL301_AW_ARB_MI_2, 0x00000100);
-    FAxiWriteReg(PL301_AW_ARB_MI_2, 0x01000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_2, 0x02000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_2, 0x03000200);
-    FAxiWriteReg(PL301_AW_ARB_MI_2, 0x04000200);
-}
diff --git a/ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.inf b/ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.inf
deleted file mode 100644
index 108161fc16c4..000000000000
--- a/ArmPlatformPkg/Drivers/PL301Axi/PL301Axi.inf
+++ /dev/null
@@ -1,27 +0,0 @@
-#/* @file
-#  Copyright (c) 2011, ARM Limited. All rights reserved.
-#
-#  This program and the accompanying materials
-#  are licensed and made available under the terms and conditions of the BSD License
-#  which accompanies this distribution.  The full text of the license may be found at
-#  http://opensource.org/licenses/bsd-license.php
-#
-#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-#
-#*/
-
-[Defines]
-  INF_VERSION                    = 0x00010005
-  BASE_NAME                      = PL301Axi
-  FILE_GUID                      = 2ea84160-aba0-11df-9896-0002a5d5c51b
-  MODULE_TYPE                    = BASE
-  VERSION_STRING                 = 1.0
-  LIBRARY_CLASS                  = PL301AxiLib
-
-[Sources]
-  PL301Axi.c
-
-[Packages]
-  ArmPlatformPkg/ArmPlatformPkg.dec
-  MdePkg/MdePkg.dec
diff --git a/ArmPlatformPkg/Include/Drivers/PL301Axi.h b/ArmPlatformPkg/Include/Drivers/PL301Axi.h
deleted file mode 100644
index ae941839f08b..000000000000
--- a/ArmPlatformPkg/Include/Drivers/PL301Axi.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/** @file
-*
-*  Copyright (c) 2011, ARM Limited. All rights reserved.
-*
-*  This program and the accompanying materials
-*  are licensed and made available under the terms and conditions of the BSD License
-*  which accompanies this distribution.  The full text of the license may be found at
-*  http://opensource.org/licenses/bsd-license.php
-*
-*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-*
-**/
-
-#ifndef PL301AXI_H_
-#define PL301AXI_H_
-
-VOID PL301AxiInit(UINTN FAxiBase);
-
-
-#endif /* PL301AXI_H_ */
-- 
2.11.0



  parent reply	other threads:[~2017-12-04 22:18 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-04 22:22 [PATCH v2 00/13] ArmPlatformPkg: remove unused or migrated modules Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 01/13] ArmPlatformPkg: remove NorFlashArmVExpressLib Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 02/13] ArmPlatformPkg: remove ArmVExpressPkg Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 03/13] ArmPlatformPkg: remove ArmPlatformSysConfigLib library class Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 04/13] ArmPlatformPkg: remove BootMonFs and ArmShellCmdRunAxf Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 05/13] ArmPlatformPkg: remove old PL011UartLib implementation Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 06/13] ArmPlatformPkg: add missing library class declarations to .dec file Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 07/13] ArmPlatformPkg/LcdGraphicsOutputDxe: move headers into driver directory Ard Biesheuvel
2017-12-04 22:22 ` Ard Biesheuvel [this message]
2017-12-04 22:22 ` [PATCH v2 09/13] ArmPlatformPkg: remove unused PL35x driver Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 10/13] ArmPlatformPkg: remove PL34xDmc driver Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 11/13] ArmPlatformPkg: remove unused PL310 driver Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 12/13] ArmPlatformPkg: remove unused ArmTrustZone driver Ard Biesheuvel
2017-12-04 22:22 ` [PATCH v2 13/13] ArmPlatformPkg: remove unused SP804 driver and TimerLib implementation Ard Biesheuvel
2017-12-08 15:59 ` [PATCH v2 00/13] ArmPlatformPkg: remove unused or migrated modules Leif Lindholm
2017-12-08 16:35   ` Ard Biesheuvel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171204222243.15950-9-ard.biesheuvel@linaro.org \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox