05 Sep, 2018

3 commits

  • [ Upstream commit 9e2ea405543d9ddfe05b351f1679e53bd9c11f80 ]

    Fix printk format warning in arch/arc/plat-eznps/mtm.c:

    In file included from ../include/linux/printk.h:7,
    from ../include/linux/kernel.h:14,
    from ../include/linux/list.h:9,
    from ../include/linux/smp.h:12,
    from ../arch/arc/plat-eznps/mtm.c:17:
    ../arch/arc/plat-eznps/mtm.c: In function 'set_mtm_hs_ctr':
    ../include/linux/kern_levels.h:5:18: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=]
    #define KERN_SOH "\001" /* ASCII Start Of Header */
    ^~~~~~
    ../include/linux/kern_levels.h:11:18: note: in expansion of macro 'KERN_SOH'
    #define KERN_ERR KERN_SOH "3" /* error conditions */
    ^~~~~~~~
    ../include/linux/printk.h:308:9: note: in expansion of macro 'KERN_ERR'
    printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
    ^~~~~~~~
    ../arch/arc/plat-eznps/mtm.c:166:3: note: in expansion of macro 'pr_err'
    pr_err("** Invalid @nps_mtm_hs_ctr [%d] needs to be [%d:%d] (incl)\n",
    ^~~~~~
    ../arch/arc/plat-eznps/mtm.c:166:40: note: format string is defined here
    pr_err("** Invalid @nps_mtm_hs_ctr [%d] needs to be [%d:%d] (incl)\n",
    ~^
    %ld
    The hs_ctr variable can just be int instead of long, so also change
    kstrtol() to kstrtoint() and leave the format string as %d.

    Also add 2 header files since they are used in mtm.c and we prefer
    not to depend on accidental/indirect #includes.

    Cc: linux-snps-arc@lists.infradead.org
    Cc: Ofer Levi
    Reviewed-by: Leon Romanovsky
    Signed-off-by: Randy Dunlap
    Signed-off-by: Vineet Gupta
    Signed-off-by: Sasha Levin
    Signed-off-by: Greg Kroah-Hartman

    Randy Dunlap
     
  • [ Upstream commit b1f32ce1c3d2c11959b7e6a2c58dc5197c581966 ]

    Add to fix build errors.
    Both ctop.h and use u32 types and cause many
    errors.

    Examples:
    ../include/soc/nps/common.h:71:4: error: unknown type name 'u32'
    u32 __reserved:20, cluster:4, core:4, thread:4;
    ../include/soc/nps/common.h:76:3: error: unknown type name 'u32'
    u32 value;
    ../include/soc/nps/common.h:124:4: error: unknown type name 'u32'
    u32 base:8, cl_x:4, cl_y:4,
    ../include/soc/nps/common.h:127:3: error: unknown type name 'u32'
    u32 value;

    ../arch/arc/plat-eznps/include/plat/ctop.h:83:4: error: unknown type name 'u32'
    u32 gen:1, gdis:1, clk_gate_dis:1, asb:1,
    ../arch/arc/plat-eznps/include/plat/ctop.h:86:3: error: unknown type name 'u32'
    u32 value;
    ../arch/arc/plat-eznps/include/plat/ctop.h:93:4: error: unknown type name 'u32'
    u32 csa:22, dmsid:6, __reserved:3, cs:1;
    ../arch/arc/plat-eznps/include/plat/ctop.h:95:3: error: unknown type name 'u32'
    u32 value;

    Cc: linux-snps-arc@lists.infradead.org
    Cc: Ofer Levi
    Reviewed-by: Leon Romanovsky
    Signed-off-by: Randy Dunlap
    Signed-off-by: Vineet Gupta
    Signed-off-by: Sasha Levin
    Signed-off-by: Greg Kroah-Hartman

    Randy Dunlap
     
  • [ Upstream commit 05b466bf846d2e8d2f0baf8dfd81a42cc933e237 ]

    Fixing compilation issue caused by missing struct nps_host_reg_aux_dpc
    definition.

    Fixes: 3f9cd874dcc87 ("ARC: [plat-eznps] avoid toggling of DPC register")
    Reported-by: Randy Dunlap
    Signed-off-by: Ofer Levi
    Signed-off-by: Vineet Gupta
    Signed-off-by: Sasha Levin
    Signed-off-by: Greg Kroah-Hartman

    Ofer Levi
     

02 Nov, 2017

1 commit

  • Many source files in the tree are missing licensing information, which
    makes it harder for compliance tools to determine the correct license.

    By default all files without license information are under the default
    license of the kernel, which is GPL version 2.

    Update the files which contain no license information with the 'GPL-2.0'
    SPDX license identifier. The SPDX identifier is a legally binding
    shorthand, which can be used instead of the full boiler plate text.

    This patch is based on work done by Thomas Gleixner and Kate Stewart and
    Philippe Ombredanne.

    How this work was done:

    Patches were generated and checked against linux-4.14-rc6 for a subset of
    the use cases:
    - file had no licensing information it it.
    - file was a */uapi/* one with no licensing information in it,
    - file was a */uapi/* one with existing licensing information,

    Further patches will be generated in subsequent months to fix up cases
    where non-standard license headers were used, and references to license
    had to be inferred by heuristics based on keywords.

    The analysis to determine which SPDX License Identifier to be applied to
    a file was done in a spreadsheet of side by side results from of the
    output of two independent scanners (ScanCode & Windriver) producing SPDX
    tag:value files created by Philippe Ombredanne. Philippe prepared the
    base worksheet, and did an initial spot review of a few 1000 files.

    The 4.13 kernel was the starting point of the analysis with 60,537 files
    assessed. Kate Stewart did a file by file comparison of the scanner
    results in the spreadsheet to determine which SPDX license identifier(s)
    to be applied to the file. She confirmed any determination that was not
    immediately clear with lawyers working with the Linux Foundation.

    Criteria used to select files for SPDX license identifier tagging was:
    - Files considered eligible had to be source code files.
    - Make and config files were included as candidates if they contained >5
    lines of source
    - File already had some variant of a license header in it (even if
    Reviewed-by: Philippe Ombredanne
    Reviewed-by: Thomas Gleixner
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

29 Aug, 2017

8 commits

  • save EFLAGS, and GPA1 auxiliary registers during context switch,
    since they may be changed by the new task in kernel mode, while using atomic
    ops e.g. cmpxchg.

    Signed-off-by: Noam Camus
    Signed-off-by: Vineet Gupta

    Noam Camus
     
  • HW bug description: in case of HW thread context switch
    the dpc configuration of the exiting thread is dragged
    one cycle into the next thread.
    In order to avoid the consequences of this bug, the DPC register
    is set to an initial value, and not changed afterwards.

    Signed-off-by: Elad Kanfi
    Signed-off-by: Noam Camus
    Signed-off-by: Vineet Gupta

    Elad Kanfi
     
  • This commit add new configuration that enables us to distinguish
    between building the kernel for platforms that have a different set
    of auxiliary registers for each cpu and platforms that have a shared
    set of auxiliary registers across every thread in each core.
    On platforms that implement a different set of auxiliary registers
    disabling this configuration insures that we initialize registers on
    every cpu and not just for the first thread of the core.
    Example for non shared registers is working with EZsim (non silicon)

    Signed-off-by: Liav Rehana
    Signed-off-by: Noam Camus
    Signed-off-by: Vineet Gupta

    Liav Rehana
     
  • We add ability for all cores at NPS SoC to control the number of cycles
    HW thread can execute before it is replace with another eligible
    HW thread within the same core. The replacement is done by the
    HW scheduler.

    Signed-off-by: Noam Camus
    Signed-off-by: Vineet Gupta
    [vgupta: simplified handlign of out of range argument value]

    Noam Camus
     
  • On ARC700 (and nSIM), user mode memory error triggers an L2 interrupt
    which is handled gracefully by kernel (or it tries to despite this being
    imprecise, and error could get charged to kernel itself). The offending
    task is killed and kernel moves on.

    NPS hardware however raises a Machine Check exception for same error
    which is NOT recoverable by kernel.

    This patch aligns kernel handling for nSIM case, to same as hardware by
    overriding the default user space bus error handler.

    Signed-off-by: Noam Camus
    Signed-off-by: Elad Kanfi
    [vgupta: rewrote changelog]
    Signed-off-by: Vineet Gupta

    Noam Camus
     
  • When HW threads are active we want CPU to enter idle state only
    for the calling HW thread and not to put on sleep all HW threads
    sharing this core. For this need the NPS400 got dedicated instruction
    so only calling thread is entring sleep and all other are still awake
    and can execute instructions.

    Signed-off-by: Noam Camus
    Signed-off-by: Vineet Gupta
    [vgupta: reworked patch to not use inline ifdef but a new function itself]

    Noam Camus
     
  • This counter represents threshold for consecutive stall which
    would trigger HW threads scheduling. However when enabled, low
    threshhold values cause performance degradation and in the
    worst case even livelock.

    So disable it by resorting to HW reset value

    Signed-off-by: Noam Camus
    Reviewed-by: Alexey Brodkin
    Signed-off-by: Vineet Gupta
    [vgupta: fixed changelog]

    Noam Camus
     
  • Signed-off-by: Noam Camus
    Reviewed-by: Alexey Brodkin
    Signed-off-by: Vineet Gupta

    Noam Camus
     

07 Feb, 2017

1 commit


01 Dec, 2016

1 commit

  • This new header file is for NPS400 SoC (part of ARC architecture).
    The header file includes macros for save/restore of HW scheduling.
    The control of HW scheduling is achieved by writing core registers.
    This code was moved from arc/plat-eznps so it can be used
    from drivers/clocksource/, available only for CONFIG_EZNPS_MTM_EXT.

    Signed-off-by: Noam Camus
    Acked-by: Daniel Lezcano

    Noam Camus
     

09 Nov, 2016

1 commit

  • Today we register to plat_smp_ops.clear() method which actually
    is acking the IPI.
    However this is already taking care by our irqchip driver specifically
    by the irq_chip.irq_eoi() method.
    This is perfect timing where it should be done and no special handling
    is needed at plat_smp_ops.clear().

    Signed-off-by: Noam Camus
    Signed-off-by: Vineet Gupta

    Noam Camus
     

09 May, 2016

2 commits