Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert Ignore skip_initramfs for now but keep kernel option MER#1988 #26

Open
wants to merge 82 commits into
base: hybris-sony-aosp-8.1.0_r47_20181015
Choose a base branch
from

Commits on Oct 21, 2018

  1. drivers: msm: camera_v2: Import updated msm_flash from 50.1.A.3xxx.

    This change allows torch and flash triggers to be turned on at varying
    brightness levels.
    
    As a bonus, it fixes a crash that occurs when enabling the front
    flash (in sdm630-nile-discovery_camera.dtsi) on discovery.
    
    Change-Id: Ic24b147f6e54ddc746b9cef3d73fdc51ce68500d
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Oct 21, 2018
    Configuration menu
    Copy the full SHA
    cdfecb5 View commit details
    Browse the repository at this point in the history
  2. arm: DT: Discovery_camera: Enable front flash.

    After updating the flash drivers (see previous commit), front flash now
    functions correctly without crashing on boot.
    
    Change-Id: Ibec34abeb06f413a29ce07bf4436d4e64662a467
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Oct 21, 2018
    Configuration menu
    Copy the full SHA
    e0cb234 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2018

  1. treewide: Linux 4.4.164

    nathanchance committed Nov 21, 2018
    Configuration menu
    Copy the full SHA
    f50aa3c View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2018

  1. Merge pull request sonyxperiadev#1832 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.164
    jerpelea authored Nov 30, 2018
    Configuration menu
    Copy the full SHA
    f4c8739 View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.165

    nathanchance committed Nov 30, 2018
    Configuration menu
    Copy the full SHA
    259c15d View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2018

  1. treewide: Linux 4.4.166

    nathanchance committed Dec 4, 2018
    Configuration menu
    Copy the full SHA
    5503799 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2018

  1. input: misc: fpc1145: Convert to wakeup sources suspend blocker

    On kernel 4.9 the Android wakelocks are finally gone.
    Convert the driver to use the wakeup sources in the Linux PM
    API to achieve the very same goal.
    
    Signed-off-by: Pablo Mendez Hernandez <[email protected]>
    pablomh authored and MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    d2f45d1 View commit details
    Browse the repository at this point in the history
  2. input: misc: fpc1145: Add poll for IO multiplex operations.

    A poll interface allows applications to wait for a specified timeout
    or indefinitely, while at the same time blocking on other file
    descriptors such as an eventfd. This is in contrast to the blocking
    ioctl which requires a wakeup every so often to check if another event
    (such as cancellation) is requested. This wakeup was configured at
    approximately .5 seconds, spamming the log and eating useless cpu
    cycles.
    
    Change-Id: Ieb34f0d731f257f6789c2d1977435d0d46a1dc4e
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    ce6684d View commit details
    Browse the repository at this point in the history
  3. input: misc: fpc1145: Take into account that poll_wait does not block.

    poll_wait simply adds the file handle to the waitqueue; the poll handler
    itself is supposed to return 0 when nothing happened, to go into a
    waiting state. As soon as the waitqueue triggers, the poll function is
    evaluated again and wakes up userspace when an event is returned.
    
    Change-Id: I9714b671b6f476ad1faa18ef59bd8a378fec86ee
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    8b35f8d View commit details
    Browse the repository at this point in the history
  4. input: misc: fpc1145: Unconditionally enable irq wake on suspend.

    The current polling state has a tendency to run into race conditions
    with device suspend, where the irq_fired flag may have not been cleared
    before a suspend is requested.
    This is particularly evident when a finger is still on the sensor; the
    HAL waits for it to disappear while the wakelock times out and fires off
    the suspend. Which in itself is another issue that is resolved in future
    commits.
    Furthermore, irq_wake is disabled unconditionally, causing "unbalanced
    disable" warnings every so often.
    
    Change-Id: Icaf2b5f77ead7def06f60b6ba3d852a58d335dec
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    1263d17 View commit details
    Browse the repository at this point in the history
  5. input: misc: fpc1145: Replace wakelock timeouts with single define.

    Group these arbitrary numbers together into a single macro.
    
    Change-Id: I9016672feb7635e74d631e107ee51e3cce4193c1
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    0ef3726 View commit details
    Browse the repository at this point in the history
  6. input: misc: fpc1145: Relax wakelock when blocking on IRQ.

    As soon as a blocking poll is entered no processing has to happen until
    the IRQ fires. Preemptively relaxing the wakelock saves unnecessary
    wakeup time when the driver/userspace is not doing anything.
    
    Change-Id: I286cb236c9f11eeda6698a15842f6804f9104a40
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    26850fa View commit details
    Browse the repository at this point in the history
  7. input: misc: fpc1145: Replace explicit wakeup_source with dev one.

    Devices have a wakeup_source embedded in them which can be accessed
    without double-underscore prefixed pm_wakeup functions.
    
    Change-Id: I80bdf4e352bd6b022d022260f5fe274f7d682c97
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    04718c1 View commit details
    Browse the repository at this point in the history
  8. input: misc: fpc1145: Add AWAKE ioctl to extend wakeup timeout.

    The fingerprint hal blocks/loops for as long a finger is touching the
    sensor before going back to polling. If an object stays on the sensor
    too long, the wakelock times out before the HAL has decided to wake up
    the system, causing it to freeze up before reaching the polling state.
    The wake-enabled IRQ is only able to wake the process in that polling
    state.
    With this change the HAL is able to signal that it needs a little longer
    before freezing up the CPU. This explicit approach has been chosen over
    an infinite (pm_keep_awake) wakelock, which needs a synchronisation
    point to release the wakelock. If this is not called, the system never
    goes back to sleep.
    
    Change-Id: Ib53fd96d70b030cd7c2d02da0bb8db180589daea
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Dec 8, 2018
    Configuration menu
    Copy the full SHA
    af87556 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2018

  1. Merge pull request sonyxperiadev#1840 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.166
    jerpelea authored Dec 10, 2018
    Configuration menu
    Copy the full SHA
    10f97ee View commit details
    Browse the repository at this point in the history
  2. Merge pull request sonyxperiadev#1847 from MarijnS95/fpc-poll-8.1

    [1/2] [4.4] input: misc: fpc1145: Add poll interface for IO multiplexing in fp HAL
    jerpelea authored Dec 10, 2018
    Configuration menu
    Copy the full SHA
    0efeafc View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2018

  1. treewide: Linux 4.4.167

    nathanchance committed Dec 18, 2018
    Configuration menu
    Copy the full SHA
    f60edf2 View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.168

    nathanchance committed Dec 18, 2018
    Configuration menu
    Copy the full SHA
    064c0ca View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2019

  1. Merge pull request sonyxperiadev#1859 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.168
    jerpelea authored Jan 7, 2019
    Configuration menu
    Copy the full SHA
    6ec594a View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2019

  1. dts: nile: fpc1145 disable enable-on-boot

    this flag breaks the functionality on Nile devices
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea authored and MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    bfb21b1 View commit details
    Browse the repository at this point in the history
  2. input: misc: fpc1145: Autoformat with upstream .clang-format config.

    Latest config taken from
    https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/.clang-format
    
    Autoformatting aids in clean code and consistency.
    
    Change-Id: Ieccbdc8513f05fddbe8aa31a2b3268871300afea
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    37ac013 View commit details
    Browse the repository at this point in the history
  3. input: misc: fpc1145: Replace global drvdata pointer with private data.

    Using private_data fields instead of a global variable is necessary if
    multiple devices are ever supposed to be using the same driver. Even
    though this is not planned, reducing global state in favor of local
    state scoped to a specific device is preferred. Of course, this
    per-device datastructure should not be the drvdata for the entire
    platform_driver.
    
    Change-Id: I082fef63eefa8ec1631c98e6d7fcc47b29a235eb
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    f5114d0 View commit details
    Browse the repository at this point in the history
  4. input: misc: et51x: Replace et510-spi with gutted fpc1145 driver.

    The original et510-spi driver has seen a lot of alteration with
    unformatted and commented-out code all over the place. Fpc on the other
    hand has been steadily maintained, and has support for more granular
    power and irq_wake management, saving battery life.
    
    Change-Id: If669fecacf0bb95c8440da8d011a0c5c474933b8
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    3f0274f View commit details
    Browse the repository at this point in the history
  5. arm64: DT: Nile: Update et510 config to match new gutted fpc driver.

    Change-Id: Ied0e2cfb2afc3fbdb7ebec0e132c144c12900581
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    e58b826 View commit details
    Browse the repository at this point in the history
  6. input: misc: et51x: Retrieve HW type on Nile and skip probe if FPC.

    Nile devices can be fitted with either sensor. This driver will disable
    itself when the other (FPC) sensor type is detected, allowing the FPC
    driver to take over. The RHWTYPE ioctl has been added for the HAL to
    figure out which of the drivers is actually in use.
    
    Change-Id: Ia7a2129e332815587dab9f960755175d8ce0e994
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    63454d6 View commit details
    Browse the repository at this point in the history
  7. input: misc: fpc1145: Detect FP hw type on Nile before continuing.

    The FPC driver needs to be disabled if Egistec hardware is detected on
    the Nile platform. This requires a slightly different driver to be
    loaded, as well as changes in the HAL.
    
    Change-Id: Iacb94ec7bf3bd03c36b932b84826a8d9f04e7303
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    f598c94 View commit details
    Browse the repository at this point in the history
  8. arm64: DT: Nile: Remove unused fingerprint enable-wakeup options.

    These options are not used nor referenced in kernel 4.4 and 4.9, and can
    thus be safely removed.
    
    Change-Id: Ic225becd2c6ee4a1bfc19d686fd136fb1f8866ce
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    2893860 View commit details
    Browse the repository at this point in the history
  9. input: misc: et51x: Drop unused rst_gpio.

    The reset GPIO is controlled through pinctrl, not directly.
    
    Change-Id: I042d8d669fbd5b0c69c595d556c63d4188256728
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    cd82300 View commit details
    Browse the repository at this point in the history
  10. input: misc: fpc1145: Drop unused rst_gpio.

    The reset GPIO is controlled through pinctrl, not directly.
    
    Change-Id: Ib3789008b1475e2d1bac61b81665a4a334c34a46
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    f65c101 View commit details
    Browse the repository at this point in the history
  11. input: misc: et51x: Reset hardware once, not after powering up.

    The original driver doesn't turn the device off to save power while it's
    not in use, but careful testing reveals that is properly possible.
    
    Resetting the device after powering it causes all kinds of inexplicable
    side-effects, such as the dreaded error -59 on initial enroll, and the
    TZ-app requesting another hardware reset when starting an auth or enroll
    session.
    
    Removing this reset fixes all aforementioned issues. The reset has to be
    done once, when the device is initially powered up.
    
    Change-Id: I432c7f01d00f3e3be26ce6610b504d7d6afcd21d
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    ba203b7 View commit details
    Browse the repository at this point in the history
  12. input: misc: et51x: Do not toggle power multiple times during probe.

    Power has to stay enabled until the TZ initializes, or it'll request a
    device reset on every finger detection operation. Different combinations
    of powering the device on and resetting the device when the HAL
    initializes have no effect on this requested reset.
    This might also be the source for the yet inexplicable error -59 on
    initial enroll.
    
    It is also impossible for the driver to turn the power off before the TZ
    has been initialized. If this happens, no errors are reported but the
    IRQ is not triggered when a finger touches the sensor.
    
    Change-Id: Ieaad4da024c39f4469695b3475d56d673cae4be0
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    3955df1 View commit details
    Browse the repository at this point in the history
  13. arm64: DT: Nile: Explain why the et51x sensor has to be enabled at boot.

    Change the TODO comment into something that explains the situation.
    
    Different combinations were tried, and it seems that keeping the device
    powered until the HAL does its initialization is the only way to
    guarantee correct operation afterwards.
    If not, IRQ's are either not fired or the TZ requests a device reset on
    every subsequent enroll or authentication session.
    
    Remember that the original driver did not turn off power to the device
    when it was not neededi (to save power).
    
    Change-Id: Id0d6b78a834fed8428b4f272e309eb2c4afe8567
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    6460571 View commit details
    Browse the repository at this point in the history
  14. input: misc: et51x: Clean up log messages.

    Demote some (spammy) info messages to dbg.
    
    Change-Id: I852614328f10ab770d9a77e46dd476f9315fa8b1
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    a9bc52c View commit details
    Browse the repository at this point in the history
  15. input: misc: et51x: Drop regulator load and change to block comments.

    The original driver sets the load to 0, which is a no-op since it
    doesn't contribute to the total load the regulator has to supply. This
    is a way of saying that the driver developers didn't know what the
    sensor is using. Since there are no public product sheets available,
    we don't know this either.
    
    Change-Id: I5c51ab2929151270869f9006d71750db97b09a71
    Signed-off-by: MarijnS95 <[email protected]>
    MarijnS95 committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    e2c7e96 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2019

  1. Configuration menu
    Copy the full SHA
    217e7e1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request sonyxperiadev#1865 from MarijnS95/egistec-4.4

    [backport][4.4] et51x driver rework and Nile FPC type detection
    jerpelea authored Jan 9, 2019
    Configuration menu
    Copy the full SHA
    44235a0 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2019

  1. treewide: Linux 4.4.169

    nathanchance committed Jan 14, 2019
    Configuration menu
    Copy the full SHA
    29ff04a View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.170

    nathanchance committed Jan 14, 2019
    Configuration menu
    Copy the full SHA
    b3f1c36 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2019

  1. Merge pull request sonyxperiadev#1870 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.170
    jerpelea authored Jan 22, 2019
    Configuration menu
    Copy the full SHA
    89c8117 View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.171

    nathanchance committed Jan 22, 2019
    Configuration menu
    Copy the full SHA
    397e0fc View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2019

  1. Merge pull request sonyxperiadev#1886 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.171
    jerpelea authored Jan 30, 2019
    Configuration menu
    Copy the full SHA
    c790d16 View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.172

    nathanchance committed Jan 30, 2019
    Configuration menu
    Copy the full SHA
    3ed262f View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2019

  1. Merge pull request sonyxperiadev#1776 from MarijnS95/discovery-enable…

    …-front-flash
    
    Discovery: enable front flash
    jerpelea authored Feb 1, 2019
    Configuration menu
    Copy the full SHA
    3ba03cb View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2019

  1. Merge pull request sonyxperiadev#1899 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.172
    jerpelea authored Feb 6, 2019
    Configuration menu
    Copy the full SHA
    bec4b88 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2019

  1. Merge remote-tracking branch 'sony/aosp/LA.UM.6.4.r1' into hybris-son…

    …y-aosp-8.1.0_r52_20190206
    
    Upstream changes
    sledges committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    44cc909 View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.173

    nathanchance committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    a098786 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2019

  1. Merge pull request sonyxperiadev#1911 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.173
    jerpelea authored Feb 15, 2019
    Configuration menu
    Copy the full SHA
    f114d4c View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2019

  1. treewide: Linux 4.4.174

    nathanchance committed Feb 16, 2019
    Configuration menu
    Copy the full SHA
    a1c92d5 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2019

  1. Merge pull request sonyxperiadev#1918 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.174
    jerpelea authored Feb 22, 2019
    Configuration menu
    Copy the full SHA
    4069714 View commit details
    Browse the repository at this point in the history
  2. treewide: Linux 4.4.175

    nathanchance committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    5c95b5f View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2019

  1. treewide: Linux 4.4.176

    nathanchance committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    a6c65fd View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2019

  1. input: misc: vl53L0: Support setting reference SPADs from sysfs

    We may have stored the reference SPADs somewhere and we may
    want to set them from the userspace.
    
    For this, add support for setting the reference SPADs
    using sysfs.
    kholk authored and jerpelea committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    f5e9f68 View commit details
    Browse the repository at this point in the history
  2. input: misc: vl53L0: Support setting offset calibration data on sysfs

    We may have stored the offset calibration data somewhere and
    we may want to set them from the userspace.
    
    For this reason, add support for setting the offset calibration
    data, expressed in micrometers, using sysfs.
    kholk authored and jerpelea committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    df2f63c View commit details
    Browse the repository at this point in the history
  3. input: misc: vl53L0: Set custom calibrations at device start time

    When the device starts, set the custom calibrations that we got
    from the userspace, if any.
    kholk authored and jerpelea committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    b413318 View commit details
    Browse the repository at this point in the history
  4. input: misc: vl53L0: Increase sigma limit for high accuracy mode

    Increase the sigma limit for the high accuracy mode to allow a
    bigger distance measurement in good light conditions.
    kholk authored and jerpelea committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    56ab711 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2019

  1. defconfig: loire: disable CHR_DEV_SCH

    This is a driver for SCSI media changers.  Most common devices are
    tape libraries and MOD/CDROM jukeboxes.  *Real* jukeboxes, you
    don't need this for those tiny 6-slot cdrom changers.  Media
    changers are listed as Type: Medium Changer in /proc/scsi/scsi.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    d311cc9 View commit details
    Browse the repository at this point in the history
  2. defconfig: nile: disable CHR_DEV_SCH

    This is a driver for SCSI media changers.  Most common devices are
    tape libraries and MOD/CDROM jukeboxes.  *Real* jukeboxes, you
    don't need this for those tiny 6-slot cdrom changers.  Media
    changers are listed as Type: Medium Changer in /proc/scsi/scsi.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    f358481 View commit details
    Browse the repository at this point in the history
  3. defconfig: tone: disable CHR_DEV_SCH

    This is a driver for SCSI media changers.  Most common devices are
    tape libraries and MOD/CDROM jukeboxes.  *Real* jukeboxes, you
    don't need this for those tiny 6-slot cdrom changers.  Media
    changers are listed as Type: Medium Changer in /proc/scsi/scsi.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    5579bc2 View commit details
    Browse the repository at this point in the history
  4. defconfig: yoshino: disable CHR_DEV_SCH

    This is a driver for SCSI media changers.  Most common devices are
    tape libraries and MOD/CDROM jukeboxes.  *Real* jukeboxes, you
    don't need this for those tiny 6-slot cdrom changers.  Media
    changers are listed as Type: Medium Changer in /proc/scsi/scsi.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    338ca16 View commit details
    Browse the repository at this point in the history
  5. defconfig: loire: disable MSDOS_FS

    We should not use the legacy MSDOS_FS since the VFAT driver
    is backward compatible and can mount the DOS file system
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    38dab55 View commit details
    Browse the repository at this point in the history
  6. defconfig: nile: disable MSDOS_FS

    We should not use the legacy MSDOS_FS since the VFAT driver
    is backward compatible and can mount the DOS file system
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    2f3615a View commit details
    Browse the repository at this point in the history
  7. defconfig: tone: disable MSDOS_FS

    We should not use the legacy MSDOS_FS since the VFAT driver
    is backward compatible and can mount the DOS file system
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    4387586 View commit details
    Browse the repository at this point in the history
  8. defconfig: yoshino: disable MSDOS_FS

    We should not use the legacy MSDOS_FS since the VFAT driver
    is backward compatible and can mount the DOS file system
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    7fcb588 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2019

  1. defconfig: loire: disable VGA_ARB

    Some legacy VGA devices implemented on PCI typically have the same
    hard-decoded addresses as they did on ISA. When multiple PCI devices
    are accessed at same time they need some kind of coordination. Please
    see Documentation/vgaarbiter.txt for more details. Select this to
    enable VGA arbiter.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    3b279d6 View commit details
    Browse the repository at this point in the history
  2. defconfig: nile: disable VGA_ARB

    Some legacy VGA devices implemented on PCI typically have the same
    hard-decoded addresses as they did on ISA. When multiple PCI devices
    are accessed at same time they need some kind of coordination. Please
    see Documentation/vgaarbiter.txt for more details. Select this to
    enable VGA arbiter.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    bd95e91 View commit details
    Browse the repository at this point in the history
  3. defconfig: tone: disable VGA_ARB

    Some legacy VGA devices implemented on PCI typically have the same
    hard-decoded addresses as they did on ISA. When multiple PCI devices
    are accessed at same time they need some kind of coordination. Please
    see Documentation/vgaarbiter.txt for more details. Select this to
    enable VGA arbiter.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    d4468d0 View commit details
    Browse the repository at this point in the history
  4. defconfig: yoshino: disable VGA_ARB

    Some legacy VGA devices implemented on PCI typically have the same
    hard-decoded addresses as they did on ISA. When multiple PCI devices
    are accessed at same time they need some kind of coordination. Please
    see Documentation/vgaarbiter.txt for more details. Select this to
    enable VGA arbiter.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    42391c4 View commit details
    Browse the repository at this point in the history
  5. defconfig: loire: disable SW_SYNC_USER

    Provides a user space API to the sw sync object.
    *WARNING* improper use of this can result in deadlocking kernel
    drivers from userspace.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    ab91227 View commit details
    Browse the repository at this point in the history
  6. defconfig: tone: disable SW_SYNC_USER

    Provides a user space API to the sw sync object.
    *WARNING* improper use of this can result in deadlocking kernel
    drivers from userspace.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5eea123 View commit details
    Browse the repository at this point in the history
  7. defconfig: tone: disable SEEMP_CORE

    This option enables Qualcomm Snapdragron Smart Protection to detect
    anomalies in various activities. It records task activities in
    a log and rates the actions according to whether a typical user would
    use the tools.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0bb0296 View commit details
    Browse the repository at this point in the history
  8. defconfig: nile: disable SEEMP_CORE

    This option enables Qualcomm Snapdragron Smart Protection to detect
    anomalies in various activities. It records task activities in
    a log and rates the actions according to whether a typical user would
    use the tools.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9c10fcf View commit details
    Browse the repository at this point in the history
  9. defconfig: yoshino: disable SEEMP_CORE

    This option enables Qualcomm Snapdragron Smart Protection to detect
    anomalies in various activities. It records task activities in
    a log and rates the actions according to whether a typical user would
    use the tools.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
    jerpelea committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    8dfdd1b View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2019

  1. Merge pull request sonyxperiadev#1922 from nathanchance/stable-4.4

    [6.4.r1] Linux 4.4.176
    jerpelea authored Mar 5, 2019
    Configuration menu
    Copy the full SHA
    463df0e View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2019

  1. Merge remote-tracking branch 'sony/aosp/LA.UM.6.4.r1' into hybris-son…

    …y-aosp-8.1.0_r52_20190206
    sledges committed Mar 13, 2019
    Configuration menu
    Copy the full SHA
    bd5664d View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2019

  1. Merge pull request mer-hybris#27 from mer-hybris/update

    Upstream changes 20190313
    sledges authored Mar 15, 2019
    Configuration menu
    Copy the full SHA
    632c27e View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2019

  1. cnss_utils: Add support for derived MAC address

    MAC address programmed thru CNSS could be provisioned or
    derived MAC address. So add support for programming the derived
    MAC address.
    
    Change-Id: I2fae232e32a8600949c286346acd05afefd94ef8
    Signed-off-by: Sameer Thalappil <[email protected]>
    Sameer Thalappil authored and Franz-Josef Haider committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    9d36fff View commit details
    Browse the repository at this point in the history
  2. icnss: Add dev to all export APIs in ICNSS

    Add device pointer in all export symbol to
    add support for numerous WLAN module.
    
    CRs-Fixed: 2138446
    Change-Id: I981155c165e4e5c2794b778afe647f8a588dd860
    Signed-off-by: Sarada Prasanna Garnayak <[email protected]>
    Sarada Prasanna Garnayak authored and Franz-Josef Haider committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    813519b View commit details
    Browse the repository at this point in the history
  3. icnss: Add a flag to indicare FW rejuvenate

    Add a flag to maintain fw rejuvenate state,
    set if fw rejuvenate happens and reset at fw ready.
    export an API to the wlan host driver to distinguish the
    case of ssr or pdr with the FW rejuventae.
    
    Change-Id: I7a01cc4996f68f78aa13eacf36648331a701882a
    Signed-off-by: Anurag Chouhan <[email protected]>
    Anurag Chouhan authored and Franz-Josef Haider committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    dbcf314 View commit details
    Browse the repository at this point in the history
  4. [wifi] enable CONFIG_WLAN_TX_FLOW_CONTROL_V2 required for newer qcacl…

    …d module. JB#44057
    Franz-Josef Haider committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    c7bfe0d View commit details
    Browse the repository at this point in the history
  5. [wifi] add a compat define required for newer version of qcacld. JB#4…

    …4057
    Franz-Josef Haider committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    48c74f3 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2019

  1. Merge pull request mer-hybris#28 from mer-hybris/jb44057

    Cherry-pick patches required for newer qcacld kernel module. JB#44057
    krnlyng authored Apr 9, 2019
    Configuration menu
    Copy the full SHA
    67300c0 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2019

  1. Configuration menu
    Copy the full SHA
    c73ed25 View commit details
    Browse the repository at this point in the history