xtensa: minimize use of PLATFORM_DEFAULT_MEM_{ADDR,SIZE}
authorMax Filippov <jcmvbkbc@gmail.com>
Fri, 22 Jul 2016 23:47:58 +0000 (02:47 +0300)
committerMax Filippov <jcmvbkbc@gmail.com>
Sun, 24 Jul 2016 03:33:59 +0000 (06:33 +0300)
commit3de00482b006daa110151ac6775adc52538a3d6a
treebd7a17e41872fdd386b5f548af88ee626fcdaba6
parenta9f2fc628e3a26a829fd79aff74eb49839d1e74b
xtensa: minimize use of PLATFORM_DEFAULT_MEM_{ADDR,SIZE}

Now that the kernel load address and KSEG physical base address have
their own Kconfig symbols PLATFORM_DEFAULT_MEM seems redundant. It makes
little sense to use it in MMU configurations instead of KSEG_PADDR.
In noMMU configurations there's no explicit KSEG, so it's still useful
for the early cache initialization and definition of ARCH_PFN_OFFSET,
which affects mem_map size.

- limit it to noMMU; MMU variants have XCHAL_KSEG_PADDR and
  XCHAL_KSEG_SIZE;
- don't use it to define TASK_SIZE or MAX_LOW_PFN: first doesn't make
  any difference in noMMU, second is meaningless as there's no high
  memory;
- don't add default physical memory region: memory layout should come
  from the DT, bootloader tags, or memmap= command line parameter.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/Kconfig
arch/xtensa/include/asm/page.h
arch/xtensa/include/asm/processor.h
arch/xtensa/kernel/setup.c