lkml.org 
[lkml]   [2018]   [Jan]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    From
    Date
    SubjectRe: [PATCH v6 29/36] nds32: Build infrastructure
    On Mon, Jan 15, 2018 at 6:53 AM, Greentime Hu <green.hu@gmail.com> wrote:
    > From: Greentime Hu <greentime@andestech.com>
    >
    > This patch adds Makefile, Kconfig and vmlinux.lds.S files required for building
    > an nds32 kernel.
    >
    > Signed-off-by: Vincent Chen <vincentc@andestech.com>
    > Signed-off-by: Greentime Hu <greentime@andestech.com>

    I find some new details every time I look here ;-)

    > @@ -0,0 +1,107 @@
    > +#
    > +# For a description of the syntax of this configuration file,
    > +# see Documentation/kbuild/kconfig-language.txt.
    > +#
    > +
    > +config NDS32
    > + def_bool y
    > + select ARCH_HAS_RAW_COPY_USER

    I don't think this symbol was ever merged. Do you remember why you added it?

    > + select ARCH_WANT_FRAME_POINTERS if FTRACE
    > + select ARCH_WANT_IPC_PARSE_VERSION

    You most certainly don't want IPC_PARSE_VERSION, please drop this
    and adapt your glibc.

    > + select CLKSRC_MMIO
    > + select CLONE_BACKWARDS
    > + select COMMON_CLK
    > + select FRAME_POINTER

    Do you need both ARCH_WANT_FRAME_POINTERS and FRAME_POINTER here?

    > + select GENERIC_ATOMIC64
    > + select GENERIC_CPU_DEVICES
    > + select GENERIC_CLOCKEVENTS
    > + select GENERIC_IRQ_CHIP
    > + select GENERIC_IRQ_PROBE

    I think it's better to drop GENERIC_IRQ_PROBE here, no modern driver
    should rely on that.

    > +choice
    > + prompt "CPU type"
    > + default CPU_V3
    > +config CPU_N15
    > + bool "AndesCore N15"
    > +config CPU_N13
    > + bool "AndesCore N13"
    > + select CPU_CACHE_ALIASING if ANDES_PAGE_SIZE_4KB
    > +config CPU_N10
    > + bool "AndesCore N10"
    > + select CPU_CACHE_ALIASING
    > +config CPU_D15
    > + bool "AndesCore D15"
    > +config CPU_D10
    > + bool "AndesCore D10"
    > + select CPU_CACHE_ALIASING
    > +config CPU_V3
    > + bool "AndesCore v3 compatible"
    > + select ANDES_PAGE_SIZE_8KB
    > +endchoice

    I forget what we discussed here earlier, but at the very least, there should be
    some help text here to explain what the implications are. I assume that you
    generally want to be able to build one kernel to run on all of the above, right?

    Will selecting 'CPU_V3' result in a kernel binary that can run on all of them?
    If so, please explain it here as that is not obvious.

    For the other CPU types, can you list the what backwards-compatiblity
    you get? E.g. will a kernel built for N13 run on any of N15, D15 or N10?

    I think the 'select ANDES_PAGE_SIZE_8KB' cannot work as expected,
    since ANDES_PAGE_SIZE_8KB is inside of a 'choice' statement. Since
    there are only two options (4K and 8K), you can address that by making
    it a simple bool option and fall back to 4K when ANDES_PAGE_SIZE_8KB
    is disabled.

    > +config CACHE_L2
    > + bool "Support L2 cache"
    > + default y
    > + help
    > + Say Y here to enable L2 cache if your SoC are integrated with L2CC.
    > + If unsure, say N.
    > +
    > +menu "Memory configuration"
    > +
    > +choice
    > + prompt "Memory split"
    > + depends on MMU
    > + default VMSPLIT_3G

    Why not default to VMSPLIT_3G_OPT?

    Arnd

    \
     
     \ /
      Last update: 2018-01-18 12:01    [W:4.068 / U:0.124 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site