summaryrefslogtreecommitdiffstats
path: root/meta-openpower
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2018-10-15 08:49:56 +1030
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-10-17 03:26:48 +0000
commitd9daf3d2fce906f74805465d48583948af869afd (patch)
tree5341a584adb5d8ef3c6ef45a02571c4c129cf842 /meta-openpower
parenta63fcb73273d4e19fad40cabc123089cac3a0bbd (diff)
downloadtalos-openbmc-d9daf3d2fce906f74805465d48583948af869afd.tar.gz
talos-openbmc-d9daf3d2fce906f74805465d48583948af869afd.zip
openpower: pdbg: Remove stray patch
This patch should be submitted to the pdbg project for review and inclusion. (From meta-openpower rev: c95d7cb25c733715ff766260de96214b39e9ebe5) Change-Id: I471f2a16ef8331ca799ce2e81e122a8c22f158ac Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-openpower')
-rw-r--r--meta-openpower/recipes-bsp/pdbg/pdbg/0001-CFAM-reg-0x2918-access-hack.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta-openpower/recipes-bsp/pdbg/pdbg/0001-CFAM-reg-0x2918-access-hack.patch b/meta-openpower/recipes-bsp/pdbg/pdbg/0001-CFAM-reg-0x2918-access-hack.patch
deleted file mode 100644
index dba62e3fe..000000000
--- a/meta-openpower/recipes-bsp/pdbg/pdbg/0001-CFAM-reg-0x2918-access-hack.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From e21d90ae8c131eae9d78e3d06f29cab55c952884 Mon Sep 17 00:00:00 2001
-From: Matt Spinler <spinler@us.ibm.com>
-Date: Thu, 19 Jan 2017 09:06:48 -0600
-Subject: [PATCH] CFAM reg 0x2918 access hack
-
----
- libpdbg/bmcfsi.c | 11 ++++++++++-
- 1 file changed, 10 insertions(+), 1 deletion(-)
-
-diff --git a/libpdbg/bmcfsi.c b/libpdbg/bmcfsi.c
-index 64dbd69..f763f2a 100644
---- a/libpdbg/bmcfsi.c
-+++ b/libpdbg/bmcfsi.c
-@@ -247,7 +247,16 @@ static uint64_t fsi_abs_ar(uint32_t addr, int read)
- /* Reformat the address. I'm not sure I fully understand this
- * yet but we basically shift the bottom byte and add 0b01
- * (for the write word?) */
-- addr = ((addr & 0x1fff00) | ((addr & 0xff) << 2)) << 1;
-+
-+ /* Hack: this shifting doesn't work for all addresses, but it does
-+ * work for 2918 and (and 2nd chip 2918) so use it just for that */
-+ if ((addr == 0x2918) || (addr == 0x102918)) {
-+ addr = ((addr & 0x1ffe00) | ((addr & 0x1ff) << 2)) << 1;
-+ }
-+ else {
-+ addr = ((addr & 0x1fff00) | ((addr & 0xff) << 2)) << 1;
-+ }
-+
- addr |= 0x3;
- addr |= slave_id << 26;
- addr |= (0x8ULL | !!(read)) << 22;
---
-2.11.0
-
OpenPOWER on IntegriCloud