summaryrefslogtreecommitdiff
path: root/arch/arm (follow)
Commit message (Collapse)AuthorAge
...
| | * | | | | Merge 4.4.87 into android-4.4Greg Kroah-Hartman2017-09-07
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes in 4.4.87 irqchip: mips-gic: SYNC after enabling GIC region i2c: ismt: Don't duplicate the receive length for block reads i2c: ismt: Return EMSGSIZE for block reads with bogus length ceph: fix readpage from fscache cpumask: fix spurious cpumask_of_node() on non-NUMA multi-node configs cpuset: Fix incorrect memory_pressure control file mapping alpha: uapi: Add support for __SANE_USERSPACE_TYPES__ CIFS: Fix maximum SMB2 header size CIFS: remove endian related sparse warning wl1251: add a missing spin_lock_init() xfrm: policy: check policy direction value drm/ttm: Fix accounting error when fail to get pages for pool kvm: arm/arm64: Fix race in resetting stage2 PGD kvm: arm/arm64: Force reading uncached stage2 PGD epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() crypto: algif_skcipher - only call put_page on referenced and used pages Linux 4.4.87 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
| | | * | | | kvm: arm/arm64: Force reading uncached stage2 PGDSuzuki K Poulose2017-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 2952a6070e07ebdd5896f1f5b861acad677caded upstream. Make sure we don't use a cached value of the KVM stage2 PGD while resetting the PGD. Cc: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Reviewed-by: Christoffer Dall <cdall@linaro.org> Signed-off-by: Christoffer Dall <cdall@linaro.org> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| | | * | | | kvm: arm/arm64: Fix race in resetting stage2 PGDSuzuki K Poulose2017-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 6c0d706b563af732adb094c5bf807437e8963e84 upstream. In kvm_free_stage2_pgd() we check the stage2 PGD before holding the lock and proceed to take the lock if it is valid. And we unmap the page tables, followed by releasing the lock. We reset the PGD only after dropping this lock, which could cause a race condition where another thread waiting on or even holding the lock, could potentially see that the PGD is still valid and proceed to perform a stage2 operation and later encounter a NULL PGD. [223090.242280] Unable to handle kernel NULL pointer dereference at virtual address 00000040 [223090.262330] PC is at unmap_stage2_range+0x8c/0x428 [223090.262332] LR is at kvm_unmap_hva_handler+0x2c/0x3c [223090.262531] Call trace: [223090.262533] [<ffff0000080adb78>] unmap_stage2_range+0x8c/0x428 [223090.262535] [<ffff0000080adf40>] kvm_unmap_hva_handler+0x2c/0x3c [223090.262537] [<ffff0000080ace2c>] handle_hva_to_gpa+0xb0/0x104 [223090.262539] [<ffff0000080af988>] kvm_unmap_hva+0x5c/0xbc [223090.262543] [<ffff0000080a2478>] kvm_mmu_notifier_invalidate_page+0x50/0x8c [223090.262547] [<ffff0000082274f8>] __mmu_notifier_invalidate_page+0x5c/0x84 [223090.262551] [<ffff00000820b700>] try_to_unmap_one+0x1d0/0x4a0 [223090.262553] [<ffff00000820c5c8>] rmap_walk+0x1cc/0x2e0 [223090.262555] [<ffff00000820c90c>] try_to_unmap+0x74/0xa4 [223090.262557] [<ffff000008230ce4>] migrate_pages+0x31c/0x5ac [223090.262561] [<ffff0000081f869c>] compact_zone+0x3fc/0x7ac [223090.262563] [<ffff0000081f8ae0>] compact_zone_order+0x94/0xb0 [223090.262564] [<ffff0000081f91c0>] try_to_compact_pages+0x108/0x290 [223090.262569] [<ffff0000081d5108>] __alloc_pages_direct_compact+0x70/0x1ac [223090.262571] [<ffff0000081d64a0>] __alloc_pages_nodemask+0x434/0x9f4 [223090.262572] [<ffff0000082256f0>] alloc_pages_vma+0x230/0x254 [223090.262574] [<ffff000008235e5c>] do_huge_pmd_anonymous_page+0x114/0x538 [223090.262576] [<ffff000008201bec>] handle_mm_fault+0xd40/0x17a4 [223090.262577] [<ffff0000081fb324>] __get_user_pages+0x12c/0x36c [223090.262578] [<ffff0000081fb804>] get_user_pages_unlocked+0xa4/0x1b8 [223090.262579] [<ffff0000080a3ce8>] __gfn_to_pfn_memslot+0x280/0x31c [223090.262580] [<ffff0000080a3dd0>] gfn_to_pfn_prot+0x4c/0x5c [223090.262582] [<ffff0000080af3f8>] kvm_handle_guest_abort+0x240/0x774 [223090.262584] [<ffff0000080b2bac>] handle_exit+0x11c/0x1ac [223090.262586] [<ffff0000080ab99c>] kvm_arch_vcpu_ioctl_run+0x31c/0x648 [223090.262587] [<ffff0000080a1d78>] kvm_vcpu_ioctl+0x378/0x768 [223090.262590] [<ffff00000825df5c>] do_vfs_ioctl+0x324/0x5a4 [223090.262591] [<ffff00000825e26c>] SyS_ioctl+0x90/0xa4 [223090.262595] [<ffff000008085d84>] el0_svc_naked+0x38/0x3c This patch moves the stage2 PGD manipulation under the lock. Reported-by: Alexander Graf <agraf@suse.de> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Marc Zyngier <marc.zyngier@arm.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Radim Krčmář <rkrcmar@redhat.com> Reviewed-by: Christoffer Dall <cdall@linaro.org> Reviewed-by: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Signed-off-by: Christoffer Dall <cdall@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
* | | | | | | Merge "ARM: dts: msm: Add verify flag in fs_mgr of vendor"Linux Build Service Account2017-10-13
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | |
| * | | | | | ARM: dts: msm: Add verify flag in fs_mgr of vendorSachin Grover2017-10-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add verify flag in fs_mgr of vendor label to enable verity on vendor partition for sdm630, sdm660 & msm8998. Change-Id: I172b3f8da55059658bb0caff5c8b2cab905a21ad Signed-off-by: Sachin Grover <sgrover@codeaurora.org>
* | | | | | | ARM: dts: msm: add the dtsi entries for DP PLL clocks for msm8998Padmanabhan Komanduru2017-10-10
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The parent of DP VCO divided mux clock needs to be set from the Display Port driver based on the link rate. Add the dtsi entries needs for this support for msm8998. Change-Id: I76c2568579735f20106e40a359fd0052a2f51fbf Signed-off-by: Padmanabhan Komanduru <pkomandu@codeaurora.org>
* | | | | | Merge "ARM: dts: msm: Add device for boot time marker on msm8996 virtual ↵Linux Build Service Account2017-10-09
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | platform"
| * | | | | ARM: dts: msm: Add device for boot time marker on msm8996 virtual platformZhiqiang Tu2017-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add mpm sleep counter and imem boot stats for boot status and boot time marker. Change-Id: I9053bf89d30e92f9f18a979356c5e4c4626f498d Signed-off-by: Zhiqiang Tu <ztu@codeaurora.org>
* | | | | | Merge "ARM: dts: msm: Add AFE clock version for primary auxpcm"Linux Build Service Account2017-10-05
|\ \ \ \ \ \
| * | | | | | ARM: dts: msm: Add AFE clock version for primary auxpcmVatsal Bucha2017-09-27
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Kernel crash is observed when trying to access component because wcd_dsp_ctl is deregistered. This is due to failure in soundcard registration. The failure occurs due to msm unable to set aanc version. Update afe clock version for primary auxpcm resolves the issue. CRs-Fixed: 2113187 Change-Id: I8bb3c9a6946f1c1af88a62d7ee154b6e7ff904f4 Signed-off-by: Vatsal Bucha <vbucha@codeaurora.org>
* | | | | | Merge "ARM: dts: msm: use sde terminology for DRM based nodes"Linux Build Service Account2017-10-05
|\ \ \ \ \ \
| * | | | | | ARM: dts: msm: use sde terminology for DRM based nodesRahul Sharma2017-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes modifies compatible name for smmu_kms_unsec_cb to use sde terminology. Change-Id: I31ee9620f8bb54fd582d9c6b21f5df0fda3cb975 Signed-off-by: Rahul Sharma <sharah@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: change smb138x_parallel_slave node name"Linux Build Service Account2017-10-05
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: change smb138x_parallel_slave node nameNicholas Troast2017-09-29
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the smb138x_parallel_slave node name to smb138x_charger to be consistent with other smb charger node names. Change-Id: I2f325e943efbfa8d95223f830232246ee97149c4 Signed-off-by: Nicholas Troast <ntroast@codeaurora.org>
* | | | | | | Merge "ARM: enable vmalloc saving"Linux Build Service Account2017-10-05
|\ \ \ \ \ \ \
| * | | | | | | ARM: enable vmalloc savingPrakash Gupta2017-09-28
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For some targets that have less vmalloc space this can be increased by enabling config ENABLE_VMALLOC_SAVING. With this config we can reclaim virtual mappings which remains unused because of non hlos carveout reservations in lowmem. Select the default method of reclaiming virtual memory as vmalloc saving. Change-Id: I05bbae3b554be54f74b740404dda0cdfa89084bd Signed-off-by: Prakash Gupta <guptap@codeaurora.org>
* | | | | | | Merge "ath10k: Vote for hardware resources for WCN3990"Linux Build Service Account2017-10-05
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: update wcn3990 wlan device node for APQ8098Govind Singh2017-09-21
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add clock and regulator nodes for WCN3990. During recovery, there are cases where in WLAN driver running on APPS can access CE register causing exceptions because of hardware in reset state. Fix the issue by not resetting the hardware in WLAN firmware during recovery but halt the CE and MAC and reset the hardware only when reinitialization starts. For this to work, wcn3990 ath10k driver needs to keep the clock and regulator votes so that WLAN hardware will not go into weird state because of not resetting it but cutting the resources. Change-Id: Iaaa793956bed687e4d76acda93f7fa467773f013 Signed-off-by: Govind Singh <govinds@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: Add GPU speed bin 2 support for MSM8996v3"Linux Build Service Account2017-10-05
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: Add GPU speed bin 2 support for MSM8996v3Sathish Kumar2017-10-04
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GPU speed-bin 2 supports fmax of 560MHz and DDR 1555MHz. Add this config to MSM8996v3 to support required GPU fmax. Change-Id: Ibdf9bb63c7d8f0e980fbf3c192d536adeaeec52d Signed-off-by: Dumpeti Sathish Kumar <sathyanov14@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: Add fastrpc vmid flag for sdm660"Linux Build Service Account2017-10-05
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: Add fastrpc vmid flag for sdm660Tharun Kumar Merugu2017-10-03
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add device specific flag for new vmid heap shared feature. Change-Id: I35cc0073a5fa10c715d520ebb9d77936a6820aa9 Signed-off-by: Tharun Kumar Merugu <mtharu@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: Allow pm_suspend in host mode for msm8996 ADP"Linux Build Service Account2017-10-05
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | ARM: dts: msm: Allow pm_suspend in host mode for msm8996 ADPAjay Agarwal2017-09-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds device tree flag to allow system suspend on automotive platform with USB devices connected that do not support runtime suspend. Change-Id: I3ddda5052c866e16c46e5a46255acc28ab6f9363 Signed-off-by: Ajay Agarwal <ajaya@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: disable secondary adv7533 on msm8996 lite board"Linux Build Service Account2017-09-26
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: disable secondary adv7533 on msm8996 lite boardGuchun Chen2017-09-22
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Msm8996 adp lite board has two displays, native HDMI display and one DSI-HDMI display through ADV7533 bridge chip. So only one ADV7533 instance is needed here. And at the meanwhile, total sde_kms components need to match the configuration, otherwise, display driver probe will be skipped due to this mismatch. Change-Id: If596a64a9e47416e0810039914a958cae61c7e3e CRs-Fixed: 2113147 Signed-off-by: Guchun Chen <guchunc@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: Add laser LED support on MSM8998 MTP"Linux Build Service Account2017-09-26
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | |
| * | | | | | ARM: dts: msm: Add laser LED support on MSM8998 MTPVijay kumar Tumati2017-09-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add laser LED device for msm8998 MTP to support depth sensor. Change-Id: I8603540d56adbc0d0d3ee41959f7e235dc459a8d Signed-off-by: Vijay kumar Tumati <vtumati@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: Override GPU speed bin 2 for MSM8996Pro"Linux Build Service Account2017-09-24
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: Override GPU speed bin 2 for MSM8996ProKasin Li2017-09-14
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In DRM driver gpu clock don't change. override the initial gpu clock to maximal value to ensure the performance in auto system. Change-Id: I95515aedfb7b6e462d693cc5ae945ac21fcba7b8 Signed-off-by: Kasin Li <donglil@codeaurora.org>
* | | | | | | Merge "ARM: dts: msm: update PCIe WAKE for msm8998 to be pull-up"Linux Build Service Account2017-09-24
|\ \ \ \ \ \ \
| * | | | | | | ARM: dts: msm: update PCIe WAKE for msm8998 to be pull-upAlexei Avshalom Lazar2017-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PCIe WAKE for msm8998 is set to pull-down. This configuration can cause the wake signal to be trigerred in some scenarios. WAKE gpio should be always pull-up for preventing false wakes. Change-Id: I893ef8908437d2118238c6fd45809703b1f5e3bb Signed-off-by: Alexei Avshalom Lazar <ailizaro@codeaurora.org>
* | | | | | | | Merge "ARM: dts: msm: reserve memory for early-audio on msm8996"Linux Build Service Account2017-09-22
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | |
| * | | | | | | ARM: dts: msm: reserve memory for early-audio on msm8996Honghao Liu2017-08-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reserving memory for early-audio. The memory is used as a buffer to store PCM data for the LPASS DMA to read for playback while the kernel is booting. Change-Id: I6ec3b1f549da71d026b77508f2c56d88487eff9b Signed-off-by: Honghao Liu <honghaol@codeaurora.org>
* | | | | | | | ARM: dts: msm: Early init changes for vendor image on msm8996Anthony Mah2017-09-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For use with A/B partition feature, remove early mount of system image. Change fs mgr flags from verify to slotselect. System image is to be mounted in the lk when enabling A/B. Change-Id: I4fc2ac5f5bd22dea2fd6ff832cd31d1f3697b4d4 Signed-off-by: Anthony Mah <amah@codeaurora.org>
* | | | | | | | Merge "ARM: dts: msm: add dummy SPSS ETM device for msm8998"Linux Build Service Account2017-09-12
|\ \ \ \ \ \ \ \
| * | | | | | | | ARM: dts: msm: add dummy SPSS ETM device for msm8998Saranya Chidura2017-09-11
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add dummy device for SPSS ETM. This device can be used to configure SPSS ETM trace path. Change-Id: Idd060ce0de61acab7842103f47c838f4a618d9df Signed-off-by: Saranya Chidura <schidura@codeaurora.org>
* | | | | | | | Merge "dts: msm: Add QSEECOM heap node on msm8996 lfv platform"Linux Build Service Account2017-09-11
|\ \ \ \ \ \ \ \
| * | | | | | | | dts: msm: Add QSEECOM heap node on msm8996 lfv platformAmit Blay2017-09-10
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the QSEECOM ION heap node, to allow QSEECOM driver and QSEECOM API library to allocate ION memory from QSEECOM heap. Change-Id: Ia0b346bbac9378b79d1b7683ee1cc0ade533b4fa Signed-off-by: Amit Blay <ablay@codeaurora.org>
* | | | | | | | Merge "ARM: dts: msm: Add Support for new PM660L/A versions for SDM660/SDM630"Linux Build Service Account2017-09-11
|\ \ \ \ \ \ \ \
| * | | | | | | | ARM: dts: msm: Add Support for new PM660L/A versions for SDM660/SDM630Kiran Gunda2017-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for PM660A V2.0.2/V2.0.0 and PM660L V2.0.1 for SDM660/SDM630. The right DTB is selected based on the PMIC version used on the board. Change-Id: I19efbc527479cba0ce997c5ebb7f932ecb89063e Signed-off-by: Kiran Gunda <kgunda@codeaurora.org>
* | | | | | | | | Merge "ARM: dts: msm: Add FAN cooling device to msm8996 CV2X boards"Linux Build Service Account2017-09-11
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | ARM: dts: msm: Add FAN cooling device to msm8996 CV2X boardsGustavo Solaira2017-09-07
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a node for a GPIO-based FAN cooling device for msm8996 CV2X boards. This GPIO has a single speed and can be controlled from user space. Change-Id: Iee427407f3c4032e1394c61dd1f225e24a091a99 Signed-off-by: Gustavo Solaira <gustavos@codeaurora.org>
* | | | | | | | | Merge "ARM: dts: msm: enable camera on SDM636 MTP"Linux Build Service Account2017-09-11
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | ARM: dts: msm: enable camera on SDM636 MTPVijay kumar Tumati2017-09-01
| | |_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use board specific configuration to enable voltage supply to camera actuators Change-Id: I25fc1f0dc75a3acecd9b751029ed28b6db6ac97a Signed-off-by: Vijay kumar Tumati <vtumati@codeaurora.org>
* | | | | | | | | Merge "Revert "ARM: dts: msm: Add initial support for msm8998-9x55""Linux Build Service Account2017-09-11
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | |
| * | | | | | | | Revert "ARM: dts: msm: Add initial support for msm8998-9x55"Mohammed Khajapasha2017-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit a87cd547f684 ("ARM: dts: msm: Add initial support for msm8998-9x55"). 8998-9x55 platform doesn't need to be supported on this branch, hence, remove support for it. Change-Id: Ibc529559c04a4867ca82403a0bbf37428255e4f3 Signed-off-by: Mohammed Khajapasha <mkhaja@codeaurora.org>
* | | | | | | | | Merge "ARM: dts: msm: Enable CAN controller for msm8996 CV2X boards"Linux Build Service Account2017-09-08
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | ARM: dts: msm: Enable CAN controller for msm8996 CV2X boardsGustavo Solaira2017-09-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a device tree node for the SPI CAN controller to enable a CAN network interface for msm8996 CV2X boards. Change-Id: Ib9c1d63bf86e3b823aa8d762065ed374bdfeaa0e Signed-off-by: Gustavo Solaira <gustavos@codeaurora.org>
* | | | | | | | | | Merge "Merge android-4.4@4b8fc9f (v4.4.82) into msm-4.4"Linux Build Service Account2017-09-08
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | |