17 Apr, 2019

25 commits

  • As per "Table 26-7. SATA PHY Subsystem Low-Level Programming Sequence"
    in TRM [1] we need to turn on SATA_PHY_TX before SATA_PHY_RX.

    [1] DRA75x, DRA74x TRM - http://www.ti.com/lit/ug/sprui30f/sprui30f.pdf

    Signed-off-by: Roger Quadros
    Signed-off-by: Kishon Vijay Abraham I

    Roger Quadros
     
  • For increased DPLL stability use the settings recommended in
    the TRM [1] for PHY_RX registers for SATA and USB.

    For SATA we need to use spread spectrum settings even
    though we don't have spread spectrum enabled. The
    suggested non-spread spectrum settings don't work.

    [1] DRA75x, DRA74x TRM - http://www.ti.com/lit/ug/sprui30f/sprui30f.pdf

    Signed-off-by: Roger Quadros
    Signed-off-by: Kishon Vijay Abraham I

    Roger Quadros
     
  • Introduce a mode property in the driver data so that
    we don't have to keep using "of_device_is_compatible()"
    throughtout the driver.

    No functional change.

    Signed-off-by: Roger Quadros
    Signed-off-by: Kishon Vijay Abraham I

    Roger Quadros
     
  • There seems to be a missing bit-wise or operator when setting val,
    fix this by adding it in.

    Fixes: 2796ceb0c18a ("phy: ti-pipe3: Update pcie phy settings")
    Cc: stable@vger.kernel.org # v4.19+
    Signed-off-by: Colin Ian King
    Signed-off-by: Kishon Vijay Abraham I

    Colin Ian King
     
  • Add UFS M-PHY driver on MediaTek chipsets.

    Signed-off-by: Stanley Chu
    Reviewed-by: Chunfeng Yun
    Signed-off-by: Kishon Vijay Abraham I

    Stanley Chu
     
  • Add UFS M-PHY node document for MediaTek SoC chips.

    Signed-off-by: Stanley Chu
    Reviewed-by: Rob Herring
    Signed-off-by: Kishon Vijay Abraham I

    Stanley Chu
     
  • This patch documents the new proprty drive-impedance-ohm for
    Rockchip's eMMC PHY node.

    Signed-off-by: Christoph Muellner
    Signed-off-by: Philipp Tomsich
    Signed-off-by: Kishon Vijay Abraham I

    Christoph Muellner
     
  • The rockchip-emmc PHY can be configured with different
    drive impedance values. Currenlty a value of 50 Ohm is
    hard coded into the driver.

    This patch introduces the DTS property 'drive-impedance-ohm'
    for the rockchip-emmc phy node, which uses the value from the DTS
    to setup the drive impedance accordingly.

    Signed-off-by: Christoph Muellner
    Signed-off-by: Philipp Tomsich
    Reviewed-by: Heiko Stuebner
    Signed-off-by: Kishon Vijay Abraham I

    Christoph Muellner
     
  • The phy code was using implicit sequencing between the PHY driver
    and the UFS driver to implement certain hardware requirements.
    Specifically, the PHY reset register in the UFS controller needs
    to be deasserted before serdes start occurs in the PHY.

    Before this change, the code was doing this by utilizing the two
    phy callbacks, phy_init() and phy_poweron(), as "init step 1" and
    "init step 2", where the UFS driver would deassert reset between
    these two steps.

    This makes it challenging to power off the regulators in suspend,
    as regulators are initialized in init, not in poweron(), but only
    poweroff() is called during suspend, not exit().

    For UFS, move the actual firing up of the PHY to phy_poweron() and
    phy_poweroff() callbacks, rather than init()/exit(). UFS calls
    phy_poweroff() during suspend, so now all clocks and regulators for
    the phy can be powered down during suspend.

    QMP is a little tricky because the PHY is also shared with PCIe and
    USB3, which have their own definitions for init() and poweron(). Rename
    the meaty functions to _enable() and _disable() to disentangle from the
    PHY core names, and then create two different ops structures: one for
    UFS and one for the other PHY types.

    In phy-qcom-ufs, remove the 'is_powered_on' and 'is_started' guards,
    as the generic PHY code does the reference counting. The
    14/20nm-specific init functions get collapsed into the generic power_on()
    function, with the addition of a calibrate() callback specific to 14/20nm.

    Signed-off-by: Evan Green
    Reviewed-by: Stephen Boyd
    Signed-off-by: Kishon Vijay Abraham I

    Evan Green
     
  • Move the PHY reset from ufs-qcom into the respective PHYs. This will
    allow us to merge the two phases of UFS PHY initialization.

    Signed-off-by: Evan Green
    Reviewed-by: Stephen Boyd
    Signed-off-by: Kishon Vijay Abraham I

    Evan Green
     
  • Expose a reset controller that the phy will later use to control its
    own PHY reset in the UFS controller. This will enable the combining
    of PHY init functionality into a single function.

    Signed-off-by: Evan Green
    Reviewed-by: Stephen Boyd
    Signed-off-by: Kishon Vijay Abraham I

    Evan Green
     
  • Add a resets property to the PHY that represents the PHY reset
    register in the UFS controller itself. This better describes the
    complete specification of the PHY, and allows the PHY to perform
    its initialization in a single function, rather than relying on
    back-channel sequencing of initialization through the PHY framework.

    Signed-off-by: Evan Green
    Reviewed-by: Rob Herring
    Reviewed-by: Stephen Boyd
    Signed-off-by: Kishon Vijay Abraham I

    Evan Green
     
  • Add a required reset to the SDM845 UFS phy to express the PHY reset
    bit inside the UFS controller register space. Before this change, this
    reset was not expressed in the DT, and the driver utilized two different
    callbacks (phy_init and phy_poweron) to implement a two-phase
    initialization procedure that involved deasserting this reset between
    init and poweron. This abused the two callbacks and diluted their
    purpose.

    That scheme does not work as regulators cannot be turned off in
    phy_poweroff because they were turned on in init, rather than poweron.
    The net result is that regulators are left on in suspend that shouldn't
    be.

    This new scheme gives the UFS reset to the PHY, so that it can fully
    initialize itself in a single callback. We can then turn regulators on
    during poweron and off during poweroff.

    Signed-off-by: Evan Green
    Reviewed-by: Rob Herring
    Reviewed-by: Stephen Boyd
    Signed-off-by: Kishon Vijay Abraham I

    Evan Green
     
  • Enable Qualcomm UFS controllers to expose the PHY reset via a reset
    controller.

    Signed-off-by: Evan Green
    Reviewed-by: Rob Herring
    Reviewed-by: Stephen Boyd
    Signed-off-by: Kishon Vijay Abraham I

    Evan Green
     
  • This adds support for the shared USB3 + PCIE PHY found in the
    Amlogic G12A SoC Family.

    It supports USB3 Host mode or PCIE 2.0 mode, depending on the layout of
    the board.

    Selection is done by the #phy-cells, making the mode static and exclusive.

    Signed-off-by: Neil Armstrong
    Reviewed-by: Martin Blumenstingl
    Signed-off-by: Kishon Vijay Abraham I

    Neil Armstrong
     
  • This adds support for the USB2 PHY found in the Amlogic G12A SoC Family.

    It supports Host and/or Peripheral mode, depending on it's position.
    The first PHY is only used as Host, but the second supports Dual modes
    defined by the USB Control Glue HW in front of the USB Controllers.

    Signed-off-by: Neil Armstrong
    Reviewed-by: Martin Blumenstingl
    Signed-off-by: Kishon Vijay Abraham I

    Neil Armstrong
     
  • Add the Amlogic G12A Family USB3 + PCIE Combo PHY Bindings.

    This PHY can provide exclusively USB3 or PCIE support on shared I/Os.

    Signed-off-by: Neil Armstrong
    Reviewed-by: Martin Blumenstingl
    Reviewed-by: Rob Herring
    Signed-off-by: Kishon Vijay Abraham I

    Neil Armstrong
     
  • Add the Amlogic G12A Family USB2 OTG PHY Bindings

    The PHY can work in host or peripheral modes depending on it's position.
    Configuration of the mode is part of the USBCTRL registers which are
    outside of the PHY registers.

    Signed-off-by: Neil Armstrong
    Reviewed-by: Martin Blumenstingl
    Reviewed-by: Rob Herring
    Signed-off-by: Kishon Vijay Abraham I

    Neil Armstrong
     
  • USB PHY driver supports two types of stingray USB PHYs
    - Type 1 is a combo PHY contains two PHYs, one SS and one HS.
    - Type 2 is a single HS PHY.

    These two PHY versons support both Generic xHCI host controller driver
    and BDC Broadcom device controller driver.

    Signed-off-by: Srinath Mannam
    Signed-off-by: Kishon Vijay Abraham I

    Srinath Mannam
     
  • Add DT binding document for Stingray USB PHY.

    Signed-off-by: Srinath Mannam
    Reviewed-by: Rob Herring
    Signed-off-by: Kishon Vijay Abraham I

    Srinath Mannam
     
  • Add support for the XUSB pad controller found on Tegra186 SoCs. It is
    mostly similar to the same IP found on earlier chips, but the number of
    pads exposed differs, as do the programming sequences.

    Note that the DVDD_PEX, DVDD_PEX_PLL, HVDD_PEX and HVDD_PEX_PLL power
    supplies of the XUSB pad controller require strict power sequencing and
    are therefore controlled by the PMIC on Tegra186.

    Signed-off-by: JC Kuo
    Signed-off-by: Thierry Reding
    [dan.carpenter@oracle.com: Fix testing the wrong variable in probe()]
    Signed-off-by: Dan Carpenter
    [yuehaibing@huawei.com: Make two functions static to fix sparse warning]
    Signed-off-by: YueHaibing
    Signed-off-by: Kishon Vijay Abraham I

    JC Kuo
     
  • Support enabling various supplies needed to provide power to the PLLs
    and logic used to drive the USB, PCI and SATA pads.

    Reviewed-by: JC Kuo
    Signed-off-by: Thierry Reding
    Signed-off-by: Kishon Vijay Abraham I

    Thierry Reding
     
  • The device tree bindings document the "mode" property of "ports"
    subnodes, but the driver was not parsing the property. In preparation
    for adding role switching, parse the property at probe time.

    Based on work by JC Kuo .

    Reviewed-by: JC Kuo
    Signed-off-by: Thierry Reding
    Signed-off-by: Kishon Vijay Abraham I

    Thierry Reding
     
  • Tegra186 USB2 pads and USB3 pads do not have hardware mux for changing
    the pad function. For such "lanes", we can skip the lane mux register
    programming.

    Signed-off-by: JC Kuo
    Signed-off-by: Thierry Reding
    Signed-off-by: Kishon Vijay Abraham I

    JC Kuo
     
  • Extend the bindings to cover the set of features found in Tegra186. Note
    that, technically, there are four more supplies connected to the XUSB
    pad controller (DVDD_PEX, DVDD_PEX_PLL, HVDD_PEX and HVDD_PEX_PLL), but
    the power sequencing requirements of Tegra186 require these to be under
    the control of the PMIC.

    Reviewed-by: JC Kuo
    Signed-off-by: Thierry Reding
    Reviewed-by: Rob Herring
    Signed-off-by: Kishon Vijay Abraham I

    Thierry Reding
     

18 Mar, 2019

6 commits

  • Linus Torvalds
     
  • Pull more Kbuild updates from Masahiro Yamada:

    - add more Build-Depends to Debian source package

    - prefix header search paths with $(srctree)/

    - make modpost show verbose section mismatch warnings

    - avoid hard-coded CROSS_COMPILE for h8300

    - fix regression for Debian make-kpkg command

    - add semantic patch to detect missing put_device()

    - fix some warnings of 'make deb-pkg'

    - optimize NOSTDINC_FLAGS evaluation

    - add warnings about redundant generic-y

    - clean up Makefiles and scripts

    * tag 'kbuild-v5.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
    kconfig: remove stale lxdialog/.gitignore
    kbuild: force all architectures except um to include mandatory-y
    kbuild: warn redundant generic-y
    Revert "modsign: Abort modules_install when signing fails"
    kbuild: Make NOSTDINC_FLAGS a simply expanded variable
    kbuild: deb-pkg: avoid implicit effects
    coccinelle: semantic code search for missing put_device()
    kbuild: pkg: grep include/config/auto.conf instead of $KCONFIG_CONFIG
    kbuild: deb-pkg: introduce is_enabled and if_enabled_echo to builddeb
    kbuild: deb-pkg: add CONFIG_ prefix to kernel config options
    kbuild: add workaround for Debian make-kpkg
    kbuild: source include/config/auto.conf instead of ${KCONFIG_CONFIG}
    unicore32: simplify linker script generation for decompressor
    h8300: use cc-cross-prefix instead of hardcoding h8300-unknown-linux-
    kbuild: move archive command to scripts/Makefile.lib
    modpost: always show verbose warning for section mismatch
    ia64: prefix header search path with $(srctree)/
    libfdt: prefix header search paths with $(srctree)/
    deb-pkg: generate correct build dependencies

    Linus Torvalds
     
  • Pull x86 asm updates from Thomas Gleixner:
    "Two cleanup patches removing dead conditionals and unused code"

    * 'x86-asm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    x86/asm: Remove unused __constant_c_x_memset() macro and inlines
    x86/asm: Remove dead __GNUC__ conditionals

    Linus Torvalds
     
  • Pull perf fixes from Thomas Gleixner:
    "Three fixes for the fallout from the TSX errata workaround:

    - Prevent memory corruption caused by a unchecked out of bound array
    index.

    - Two trivial fixes to address compiler warnings"

    * 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    perf/x86/intel: Make dev_attr_allow_tsx_force_abort static
    perf/x86: Fixup typo in stub functions
    perf/x86/intel: Fix memory corruption

    Linus Torvalds
     
  • Pull xen fix from Juergen Gross:
    "A fix for a Xen bug introduced by David's series for excluding
    ballooned pages in vmcores"

    * tag 'for-linus-5.1b-rc1b-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
    xen/balloon: Fix mapping PG_offline pages to user space

    Linus Torvalds
     
  • Pull 9p updates from Dominique Martinet:
    "Here is a 9p update for 5.1; there honestly hasn't been much.

    Two fixes (leak on invalid mount argument and possible deadlock on
    i_size update on 32bit smp) and a fall-through warning cleanup"

    * tag '9p-for-5.1' of git://github.com/martinetd/linux:
    9p/net: fix memory leak in p9_client_create
    9p: use inode->i_lock to protect i_size_write() under 32-bit
    9p: mark expected switch fall-through

    Linus Torvalds
     

17 Mar, 2019

9 commits

  • Fixes: 400816f60c54 ("perf/x86/intel: Implement support for TSX Force Abort")
    Signed-off-by: kbuild test robot
    Signed-off-by: Thomas Gleixner
    Cc: "Peter Zijlstra (Intel)"
    Cc: kbuild-all@01.org
    Cc: Borislav Petkov
    Cc: "H. Peter Anvin"
    Cc: Kan Liang
    Cc: Jiri Olsa
    Cc: Andi Kleen
    Cc: stable@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190313184243.GA10820@lkp-sb-ep06

    kbuild test robot
     
  • When this .gitignore was added, lxdialog was an independent hostprogs-y.

    Now that all objects in lxdialog/ are directly linked to mconf, the
    lxdialog is no longer generated.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     
  • Currently, every arch/*/include/uapi/asm/Kbuild explicitly includes
    the common Kbuild.asm file. Factor out the duplicated include directives
    to scripts/Makefile.asm-generic so that no architecture would opt out
    of the mandatory-y mechanism.

    um is not forced to include mandatory-y since it is a very exceptional
    case which does not support UAPI.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     
  • The generic-y is redundant under the following condition:

    - arch has its own implementation

    - the same header is added to generated-y

    - the same header is added to mandatory-y

    If a redundant generic-y is found, the warning like follows is displayed:

    scripts/Makefile.asm-generic:20: redundant generic-y found in arch/arm/include/asm/Kbuild: timex.h

    I fixed up arch Kbuild files found by this.

    Suggested-by: Sam Ravnborg
    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     
  • This reverts commit caf6fe91ddf62a96401e21e9b7a07227440f4185.

    The commit was fine but is no longer needed as of commit 3a2429e1faf4
    ("kbuild: change if_changed_rule for multi-line recipe"). Let's go
    back to using ";" to be consistent.

    For some discussion, see:

    https://lkml.kernel.org/r/CAK7LNASde0Q9S5GKeQiWhArfER4S4wL1=R_FW8q0++_X3T5=hQ@mail.gmail.com

    Signed-off-by: Douglas Anderson
    Signed-off-by: Masahiro Yamada

    Douglas Anderson
     
  • During a simple no-op (nothing changed) build I saw 39 invocations of
    the C compiler with the argument "-print-file-name=include". We don't
    need to call the C compiler 39 times for this--one time will suffice.

    Let's change NOSTDINC_FLAGS to a simply expanded variable to avoid
    this since there doesn't appear to be any reason it should be
    recursively expanded.

    On my build this shaved ~400 ms off my "no-op" build.

    Note that the recursive expansion seems to date back to the (really
    old) commit e8f5bdb02ce0 ("[PATCH] Makefile include path ordering").
    It's a little unclear to me if the point of that patch was to switch
    the variable to be recursively expanded (which it did) or to avoid
    directly assigning to NOSTDINC_FLAGS (AKA to switch to +=) because
    someone else (out of tree?) was setting it. I presume later since if
    the only goal was to switch to recursive expansion the patch would
    have just removed the ":".

    Signed-off-by: Douglas Anderson
    Signed-off-by: Masahiro Yamada

    Douglas Anderson
     
  • * The man page for dpkg-source(1) notes:

    > -b, --build directory [format-specific-parameters]
    > Build a source package (--build since dpkg 1.17.14).
    >
    >
    > dpkg-source will build the source package with the first
    > format found in this ordered list: the format indicated
    > with the --format command line option, the format
    > indicated in debian/source/format, “1.0”. The fallback
    > to “1.0” is deprecated and will be removed at some point
    > in the future, you should always document the desired
    > source format in debian/source/format. See section
    > SOURCE PACKAGE FORMATS for an extensive description of
    > the various source package formats.

    Thus it would be more foolproof to explicitly use 1.0 (as we always
    did) than to rely on dpkg-source's defaults.

    * In a similar vein, debian/rules is not made executable by mkdebian,
    and dpkg-source warns about that but still silently fixes the file.
    Let's be explicit once again.

    Signed-off-by: Arseny Maslennikov
    Signed-off-by: Masahiro Yamada

    Arseny Maslennikov
     
  • The of_find_device_by_node() takes a reference to the underlying device
    structure, we should release that reference.
    The implementation of this semantic code search is:
    In a function, for a local variable returned by calling
    of_find_device_by_node(),
    a, if it is released by a function such as
    put_device()/of_dev_put()/platform_device_put() after the last use,
    it is considered that there is no reference leak;
    b, if it is passed back to the caller via
    dev_get_drvdata()/platform_get_drvdata()/get_device(), etc., the
    reference will be released in other functions, and the current function
    also considers that there is no reference leak;
    c, for the rest of the situation, the current function should release the
    reference by calling put_device, this code search will report the
    corresponding error message.

    By using this semantic code search, we have found some object reference leaks,
    such as:
    commit 11907e9d3533 ("ASoC: fsl-asoc-card: fix object reference leaks in
    fsl_asoc_card_probe")
    commit a12085d13997 ("mtd: rawnand: atmel: fix possible object reference leak")
    commit 11493f26856a ("mtd: rawnand: jz4780: fix possible object reference leak")

    There are still dozens of reference leaks in the current kernel code.

    Further, for the case of b, the object returned to other functions may also
    have a reference leak, we will continue to develop other cocci scripts to
    further check the reference leak.

    Signed-off-by: Wen Yang
    Reviewed-by: Julia Lawall
    Reviewed-by: Markus Elfring
    Signed-off-by: Masahiro Yamada

    Wen Yang
     
  • Pull pidfd system call from Christian Brauner:
    "This introduces the ability to use file descriptors from /proc//
    as stable handles on struct pid. Even if a pid is recycled the handle
    will not change. For a start these fds can be used to send signals to
    the processes they refer to.

    With the ability to use /proc/ fds as stable handles on struct
    pid we can fix a long-standing issue where after a process has exited
    its pid can be reused by another process. If a caller sends a signal
    to a reused pid it will end up signaling the wrong process.

    With this patchset we enable a variety of use cases. One obvious
    example is that we can now safely delegate an important part of
    process management - sending signals - to processes other than the
    parent of a given process by sending file descriptors around via scm
    rights and not fearing that the given process will have been recycled
    in the meantime. It also allows for easy testing whether a given
    process is still alive or not by sending signal 0 to a pidfd which is
    quite handy.

    There has been some interest in this feature e.g. from systems
    management (systemd, glibc) and container managers. I have requested
    and gotten comments from glibc to make sure that this syscall is
    suitable for their needs as well. In the future I expect it to take on
    most other pid-based signal syscalls. But such features are left for
    the future once they are needed.

    This has been sitting in linux-next for quite a while and has not
    caused any issues. It comes with selftests which verify basic
    functionality and also test that a recycled pid cannot be signaled via
    a pidfd.

    Jon has written about a prior version of this patchset. It should
    cover the basic functionality since not a lot has changed since then:

    https://lwn.net/Articles/773459/

    The commit message for the syscall itself is extensively documenting
    the syscall, including it's functionality and extensibility"

    * tag 'pidfd-v5.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux:
    selftests: add tests for pidfd_send_signal()
    signal: add pidfd_send_signal() syscall

    Linus Torvalds