diff options
author | Simon Glass | 2017-01-23 13:31:23 -0700 |
---|---|---|
committer | Tom Rini | 2017-01-25 17:38:42 -0500 |
commit | 8f3086aaac00749ce22be205ec01c97597a41b36 (patch) | |
tree | 9926a2c4f00897a8245001835a65bd025234cf44 /include/commproc.h | |
parent | cbcbf71bf238abd6daf13116b9a209c8fc98ae64 (diff) |
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.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/commproc.h b/include/commproc.h index 9582746153a..9d4cb109add 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 |