summaryrefslogtreecommitdiff
path: root/include/commproc.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-01-23 20:31:23 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-25 22:38:42 (GMT)
commit8f3086aaac00749ce22be205ec01c97597a41b36 (patch)
tree9926a2c4f00897a8245001835a65bd025234cf44 /include/commproc.h
parentcbcbf71bf238abd6daf13116b9a209c8fc98ae64 (diff)
downloadu-boot-8f3086aaac00749ce22be205ec01c97597a41b36.tar.xz
powerpc: Drop CONFIG_SYS_ALLOC_DPRAM
This is not defined anywhere in U-Boot. Drop this dead code. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/commproc.h')
-rw-r--r--include/commproc.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/commproc.h b/include/commproc.h
index 9582746..9d4cb10 100644
--- a/include/commproc.h
+++ b/include/commproc.h
@@ -51,20 +51,6 @@
/*
* DPRAM defines and allocation functions
*/
-
-/* The dual ported RAM is multi-functional. Some areas can be (and are
- * being) used for microcode. There is an area that can only be used
- * as data ram for buffer descriptors, which is all we use right now.
- * Currently the first 512 and last 256 bytes are used for microcode.
- */
-#ifdef CONFIG_SYS_ALLOC_DPRAM
-
-#define CPM_DATAONLY_BASE ((uint)0x0800)
-#define CPM_DATAONLY_SIZE ((uint)0x0700)
-#define CPM_DP_NOSPACE ((uint)0x7fffffff)
-
-#else
-
#define CPM_SERIAL_BASE 0x0800
#define CPM_I2C_BASE 0x0820
#define CPM_SPI_BASE 0x0840
@@ -74,8 +60,6 @@
#define CPM_POST_BASE 0x0980
#define CPM_WLKBD_BASE 0x0a00
-#endif
-
#ifndef CONFIG_SYS_CPM_POST_WORD_ADDR
#define CPM_POST_WORD_ADDR 0x07FC
#else