21 Jul, 2020

2 commits

  • Extend the example program for PTP ancillary functionality with the
    ability to configure not only the periodic output's period (frequency),
    but also the phase and duty cycle (pulse width) which were newly
    introduced.

    The ioctl level also needs to be updated to the new PTP_PEROUT_REQUEST2,
    since the original PTP_PEROUT_REQUEST doesn't support this
    functionality. For an in-tree testing program, not having explicit
    backwards compatibility is fine, as it should always be tested with the
    current kernel headers and sources.

    Tested with an oscilloscope on the felix switch PHC:

    echo '2 0' > /sys/class/ptp/ptp1/pins/switch_1588_dat0
    ./testptp -d /dev/ptp1 -p 1000000000 -w 100000000 -H 1000 -i 0

    Signed-off-by: Vladimir Oltean
    Acked-by: Richard Cochran
    Signed-off-by: David S. Miller

    Vladimir Oltean
     
  • Since 'perout' holds the nanosecond value of the signal's period, it
    should be a 64-bit value. Current assumption is that it cannot be larger
    than 1 second.

    Signed-off-by: Vladimir Oltean
    Acked-by: Richard Cochran
    Signed-off-by: David S. Miller

    Vladimir Oltean
     

03 May, 2020

1 commit


25 Mar, 2020

1 commit


16 Nov, 2019

1 commit


14 Jun, 2019

1 commit

  • Test the PTP Physical Hardware Clock functionality using the "phc_ctl" (a
    part of "linuxptp").

    The test contains three sub-tests:
    * "settime" test
    * "adjtime" test
    * "adjfreq" test

    "settime" test:
    * set the PHC time to 0 seconds.
    * wait for 120.5 seconds.
    * check if PHC time equal to 120.XX seconds.

    "adjtime" test:
    * set the PHC time to 0 seconds.
    * adjust the time by 10 seconds.
    * check if PHC time equal to 10.XX seconds.

    "adjfreq" test:
    * adjust the PHC frequency to be 1% faster.
    * set the PHC time to 0 seconds.
    * wait for 100.5 seconds.
    * check if PHC time equal to 101.XX seconds.

    Usage:
    $ ./phc.sh /dev/ptp

    It is possible to run a subset of the tests, for example:
    * To run only the "settime" test:
    $ TESTS="settime" ./phc.sh /dev/ptp

    Signed-off-by: Shalom Toledo
    Reviewed-by: Petr Machata
    Acked-by: Richard Cochran
    Tested-by: Vladimir Oltean
    Signed-off-by: Ido Schimmel
    Signed-off-by: David S. Miller

    Shalom Toledo
     

25 May, 2019

1 commit

  • Pule more SPDX updates from Greg KH:
    "Here is another set of reviewed patches that adds SPDX tags to
    different kernel files, based on a set of rules that are being used to
    parse the comments to try to determine that the license of the file is
    "GPL-2.0-or-later".

    Only the "obvious" versions of these matches are included here, a
    number of "non-obvious" variants of text have been found but those
    have been postponed for later review and analysis.

    These patches have been out for review on the linux-spdx@vger mailing
    list, and while they were created by automatic tools, they were
    hand-verified by a bunch of different people, all whom names are on
    the patches are reviewers"

    * tag 'spdx-5.2-rc2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (85 commits)
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 125
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 123
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 122
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 121
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 120
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 119
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 118
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 116
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 114
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 113
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 112
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 111
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 110
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 106
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 105
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 104
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 103
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 102
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 101
    treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 98
    ...

    Linus Torvalds
     

24 May, 2019

1 commit

  • Based on 1 normalized pattern(s):

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license as published by
    the free software foundation either version 2 of the license or at
    your option any later version this program is distributed in the
    hope that it will be useful but without any warranty without even
    the implied warranty of merchantability or fitness for a particular
    purpose see the gnu general public license for more details you
    should have received a copy of the gnu general public license along
    with this program if not write to the free software foundation inc
    675 mass ave cambridge ma 02139 usa

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-or-later

    has been chosen to replace the boilerplate/reference in 441 file(s).

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Michael Ellerman (powerpc)
    Reviewed-by: Richard Fontana
    Reviewed-by: Allison Randal
    Reviewed-by: Kate Stewart
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190520071858.739733335@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

21 May, 2019

1 commit

  • Ever since commit 3a06c7ac24f9 ("posix-clocks: Remove interval timer
    facility and mmap/fasync callbacks") the possibility of PHC based
    posix timers has been removed. In addition it will probably never
    make sense to implement this functionality.

    This patch removes the misleading example code which seems to suggest
    that posix timers for PHC devices will ever be a thing.

    Signed-off-by: Richard Cochran
    Signed-off-by: David S. Miller

    Richard Cochran
     

04 Jan, 2018

1 commit

  • Shifting a negative signed number is undefined behavior. Looking at the
    macros MAKE_PROCESS_CPUCLOCK and FD_TO_CLOCKID, it seems that the
    subexpression:

    (~(clockid_t) (pid) << 3)

    where clockid_t resolves to a signed int, which once negated, is
    undefined behavior to shift the value of if the results thus far are
    negative.

    It was further suggested to make these macros into inline functions.

    Suggested-by: Thomas Gleixner
    Signed-off-by: Nick Desaulniers
    Signed-off-by: Thomas Gleixner
    Cc: Dimitri Sivanich
    Cc: Frederic Weisbecker
    Cc: Al Viro
    Cc: linux-kselftest@vger.kernel.org
    Cc: Shuah Khan
    Cc: Deepa Dinamani
    Link: https://lkml.kernel.org/r/1514517100-18051-1-git-send-email-nick.desaulniers@gmail.com

    Nick Desaulniers
     

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
     

03 Aug, 2017

1 commit

  • Add the usr/include subdirectory of the top-level tree to the include
    path to fix build when cross compiling for ARM.
    testptp.c: In function 'main':
    testptp.c:289:15: error: 'struct ptp_clock_caps' has no member named 'cross_timestamping'
    caps.cross_timestamping);

    Signed-off-by: Grygorii Strashko
    Signed-off-by: Shuah Khan

    Grygorii Strashko
     

20 Sep, 2016

1 commit

  • Remove ptp from Makefile to move the test to selftests. Update ptp Makefile
    to work under selftests. ptp will not be run as part of selftests suite and
    will not be included in install targets. They can be built separately for
    now.

    Acked-by: Jonathan Corbet
    Signed-off-by: Shuah Khan

    Shuah Khan