Commit graph

583201 commits

Author SHA1 Message Date
Rob Clark
77ee764b12 drm/msm/adreno: remove duplicate adreno_hw_init() call
Not sure where it came from, but seem unintentional.  And also not
needed on a420, so let's just drop it.

Change-Id: Ic0dedbaddb70f0268d4182cc206412b6c69fd472
Signed-off-by: Rob Clark <robdclark@gmail.com>
Git-commit: 7977f4426c44da95c5dba91a62f099411e029de8
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:45 -07:00
Craig Stout
aebdca078e drm/msm/adreno: get CP_RPTR from register instead of shadow memory
As described in the downstream/kgsl driver:
Sometimes the RPTR shadow memory is unreliable causing timeouts
in adreno_idle().  Read it directly from the register instead.

Change-Id: Ic0dedbadf67029a7f8f872daa16d2286efe46267
Signed-off-by: Craig Stout <cstout@chromium.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Git-commit: 7d0c5ee9f07779ab29ac291748060a0a6f1d66db
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:44 -07:00
Rob Clark
a9d820db89 drm/msm: add timestamp param
We need this for GL_TIMESTAMP queries.

Note: currently only supported on a4xx.. a3xx doesn't have this
always-on counter.  I think we could emulate it with the one CP
counter that is available, but for now it is of limited usefulness
on a3xx (since we can't seem to do time-elapsed queries in any sane
way with the existing firmware on a3xx, and if you are trying to do
profiling on a tiler you want time-elapsed).  We can add that later
if it becomes useful.

Change-Id: Ic0dedbad46a7cb22391de89ed2341a5a378e1bb0
Signed-off-by: Rob Clark <robdclark@gmail.com>
Git-commit: 6c77d1abe61797239533918d7a0336fc84f4aef1
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:44 -07:00
Rob Clark
444def30a7 drm/msm: add max-freq gpu param to uapi
We need this in userspace for interpreting some of the perf ctrs.

Note possibly not quite sufficient if we had some frequency mgmt
approach other than race-to-idle.  Not really sure what the best
thing to do if we did.  Although displaying results as a percentage
of max frequence seems sensible(ish) if we did.

Change-Id: Ic0dedbad1d8481cd2609ae0d86d4de6045f0d22e
Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Git-commit: 4102a9e5325941223fbfa0a56175e9efb3d4385a
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:43 -07:00
Craig Stout
c69e93c13d drm/msm/adreno: add adreno430 power control
Change-Id: Ic0dedbadb04269a45b56bc88955977110607b566
Signed-off-by: Craig Stout <cstout@chromium.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Git-commit: 38bbc55ef5858301f5da6f6261434033a30058f6
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:43 -07:00
Craig Stout
83cc5fb12c drm/msm/adreno: support for adreno 430.
Change-Id: Ic0dedbad2287ea30f82398e3a8d2e40d15fad95a
Signed-off-by: Craig Stout <cstout@chromium.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Git-commit: 357ff00b08d67cfb489f2e306bda7d3ef45a1306
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:42 -07:00
Rob Clark
82f35c246c drm/msm: update generated headers
Pull in additional regs needed for a430, etc.

Change-Id: Ic0dedbada256c546268b2a19556a78e8912d06e4
Signed-off-by: Rob Clark <robdclark@gmail.com>
Git-commit: a2272e48eef02869dc3fa031720f36dd4cb05e4f
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
2017-02-13 15:29:42 -07:00
Prasad Sodagudi
a67da1d6f3 firmware_class: Add null check in firmware_direct_write
Add null check in firmware_direct_write to avoid null
pointer dereference due to firmware_abort.

Change-Id: Ibde30452bb6f3fe7a9f92aa3b1f2ed85a858d94e
Signed-off-by: Prasad Sodagudi <psodagud@codeaurora.org>
2017-02-13 14:23:26 -08:00
Mahesh Sivasubramanian
466165aa64 qos: Add NULL checking for irq descriptor
Check for NULL for irq descriptor to prevent deferencing an invalid
address.  The qos value is then ignored as it cannot be associated with
the requested irq.

Change-Id: I82fdc9b10ffff89032a0f0e9dade42e4c670f4b9
Signed-off-by: Mahesh Sivasubramanian <msivasub@codeaurora.org>
2017-02-13 14:55:08 -07:00
Ghanim Fodi
56b076a17f msm: ipa: use GFP_ATOMIC for DMA memory allocation during SSR
SSR logic is executed during device shutdown. During device
shutdown the Linux tasks (processes) are moving to SIGKILL
state. If a DMA allocation from the kernel happens
in a context of a process in SIGKILL state and page migration
is needed, the allocation will fail.
Use GFP_ATOMIC allocation flag during SSR. This will
utilize the atomic memory pool and will not require page
migration.

CRs-fixed: 1077811
Change-Id: Ie06b85d1f9d0a230c3d3832b6f0bbcdefc520c1e
Signed-off-by: Ghanim Fodi <gfodi@codeaurora.org>
Signed-off-by: Utkarsh Saxena <usaxena@codeaurora.org>
2017-02-13 23:04:06 +05:30
Vishnuvardhan Prodduturi
0487f36f6b ARM: dts: msm: add ESD and ULPS support for SDM660 panels
Add following support for SDM660 panels.
1) ULPS support for 1080p panels
2) ESD support for 1080p and truly  WQHD panels
3) DCS backlight support sharp WQHD panel

Change-Id: Ied36d4771df8c9e24ef27ebaabc948ad4a13bac7
Signed-off-by: Vishnuvardhan Prodduturi <vproddut@codeaurora.org>
2017-02-13 21:29:14 +05:30
Rajesh Yadav
15d73a6519 msm: mdss: Rate limit hist bin error logs
Incase of underflow, hist bin errors are flooding
the kernel logs. Rate limit the hist bin error logs.

CRs-Fixed: 2005935
Change-Id: Ief360271f0dfa9b68beea87f8fb2bbad379eddac
Signed-off-by: Rajesh Yadav <ryadav@codeaurora.org>
2017-02-13 18:51:19 +05:30
Karthikeyan Mani
cf5ecb508b ASoC: msm8998: Add DoP support on QUAT TDM
Add pinctrl dynamic switching support between
QUAT TDM and QUAT MI2S. Add snd_soc_be_ops for
QUAT TDM.

CRs-fixed: 1116515
Change-Id: Iced075d43d137639bcda6b6e6b2233b6740c5d36
Signed-off-by: Karthikeyan Mani <kmani@codeaurora.org>
2017-02-13 01:10:05 -08:00
Josh Kirsch
d6cacdfe65 ASoC: msm: qdsp6v2: Add TDM support for PCM compressed mode
Add support for 352800 sampling rates and 32 bps for the TDM.
Add support for PCM compress passthough mode with mixer controls.

CRs-fixed: 1116515
Change-Id: Iab059a5a6b6ce8f57717023467677a399a60032e
Signed-off-by: Josh Kirsch <jkirsch@codeaurora.org>
Signed-off-by: Karthikeyan Mani <kmani@codeaurora.org>
2017-02-13 01:08:43 -08:00
Govind Singh
efc329cae7 defconfig: msm: enable ATH10k WCN3990 WLAN module for APQ8098
This module adds support for the Integrated WCN3990 WLAN
module, The ATH10k WCN3990 has integrated 802.11ac chipset
with SNOC bus interface.

The ATH10K is MAC80211 based driver, enable MAC80211 and
ATH10K core related kernel config flag for driver compilation.

CRs-Fixed: 2005603
Change-Id: Ie153688eabf29e8f33aee413750028147a94d9a2
Signed-off-by: Govind Singh <govinds@codeaurora.org>
Signed-off-by: Sarada Prasanna Garnayak <sgarna@codeaurora.org>
2017-02-13 13:16:15 +05:30
Trishansh Bhardwaj
15427a54b5 ARM: dts: msm: Add qcom,gpu-limit property for sdm660
Notify kgsl to set max freq to gpu-limit when camera
use case is running.

Change-Id: Idb6b385a8dbf2ee71a583c5de6a55588ca454f22
Signed-off-by: Trishansh Bhardwaj <tbhardwa@codeaurora.org>
2017-02-13 12:43:07 +05:30
Trishansh Bhardwaj
327a93c64a msm: camera: Limit GPU clock on camera open
On camera open, vote for kgsl power limit to decrease GPU clock.

Change-Id: I8678409903b630ad6cdea5df472e08167789102c
Signed-off-by: Trishansh Bhardwaj <tbhardwa@codeaurora.org>
2017-02-13 12:43:07 +05:30
Odelu Kukatla
5e79af97dd clk: qcom: Clean up the MSM8996 multimedia clock controller (MMCC) driver
Following list of changes have been made
1. Add the missing clocks in multimedia clock controller driver.
   Also clean up clock flags and parent info for few clocks.
2. Removing clocks which are not controlled by HLOS.
3. MMCC needs to vote for volatge level on rail for the clock
   frequencies, so add voltage voting in MMCC.
4. Initial rate configuration for MMPLLs.

Change-Id: If3d84e52783651b611b624dbc60b18993c0f0b1a
Signed-off-by: Odelu Kukatla <okukatla@codeaurora.org>
Signed-off-by: Amit Nischal <anischal@codeaurora.org>
2017-02-13 12:29:55 +05:30
Manish Dewangan
bb52835a61 ASoC: msm: qdspv2: Add mixer controls for drift query
Add mixer control to query avtimer vs HDMI drift.

CRs-Fixed: 1112258
Change-Id: If57a8e32de65f3e4949cd44631552ce5afe41ef2
Signed-off-by: Manish Dewangan <manish@codeaurora.org>
2017-02-12 22:18:32 -08:00
Manish Dewangan
563050b247 ASoC: msm: qdsp6v2: Add support to query Drift.
Afe driver changes to query avtimer vs device drift.
Drift obtained can be used to pull the device pll so
that avtimer and device are in sync.

CRs-Fixed: 1112258
Change-Id: I4d4ddb0dbc06270553d583f266a44ddbe9412d1a
Signed-off-by: Manish Dewangan <manish@codeaurora.org>
2017-02-12 22:17:21 -08:00
Charan Teja Reddy
f1cc7ec4c8 arm: dma-mapping: add dma mapper for io-pgtable-fast for 32 bit
io-pgtable-fast was implemented to achieve
better performance for IOMMU map/un-map. Add
DMA API support that goes through io-pgtable-fast
for 32 bit targets.

Change-Id:I3d0560a4331f6b7b87c70d0885df11d12cb1d6ec
Signed-off-by: Charan Teja Reddy <charante@codeaurora.org>
2017-02-13 11:05:17 +05:30
xiaonian
a897b79683 ARM: dts: msm: Add sdhc2 for sdm630 QRD
Add sdhc2 to enable sd card for sdm630 QRD platform.

CRs-Fixed: 2005013
Change-Id: I3c88e1b80d36482b8f5563381656556d30a36f4c
Signed-off-by: xiaonian <xiaonian@codeaurora.org>
2017-02-13 13:34:29 +08:00
Rajesh Kemisetti
daaf5f2b04 ARM: dts: msm: Add GPU properties for SDM630
Add initial version of SDM630 GPU properties.

This is needed to support Graphics driver functionality
on SDM630 target.

Change-Id: I0442ed8dbb728adae36db8631eeba83c6425ea82
Signed-off-by: Rajesh Kemisetti <rajeshk@codeaurora.org>
2017-02-13 10:44:16 +05:30
Pavankumar Kondeti
4e258da2a2 ARM: dts: msm: update CPU efficiency values for sdm660
Update the CPU efficiency values as per the post silicon
data.

Change-Id: I69321cf5b4cf80d91f27744dd3da617354f3474d
Signed-off-by: Pavankumar Kondeti <pkondeti@codeaurora.org>
2017-02-13 10:35:33 +05:30
Tirupathi Reddy
af45f02836 regulator: cpr3: Use default step_quot during corner switch
Configure CPR4/h controllers to reset to default step_quot on each
loop_en = 0 transition. This enables the CPR controller to use the
default step_quot during a corner switch and then later switch to
the run-time calibrated step_quot. Without this feature enabled,
there is a chance for the CPR controller to use the run-time
calibrated step_quot of lower modes for higher modes that sometimes
can lead to closed-loop voltage getting stuck at open-loop voltage.

CRs-Fixed: 2003482
Change-Id: Ic738f6205a2e2030202abd811e94bd47240bad43
Signed-off-by: Tirupathi Reddy <tirupath@codeaurora.org>
2017-02-13 09:32:57 +05:30
xiaonian
f242508320 ARM: dts: msm: Add sdhc1 for SDM630 QRD
Add sdhc1 to enable eMMC support for SDM630 QRD.

CRs-Fixed: 2005010
Change-Id: I8d6c9f1479d7bde36b86b5e482085fef033795a1
Signed-off-by: xiaonian <xiaonian@codeaurora.org>
2017-02-13 09:44:27 +08:00
xiaonian
9c5dd62ff8 ARM: dts: msm: Add ufs support for SDM630 QRD
Add ufs and ufs-phy device nodes to support
ufs as storage device for SDM630 QRD platform.

CRs-Fixed: 2005015
Change-Id: If0c4edaba9285ba9a1c927e1e804427160947b11
Signed-off-by: xiaonian <xiaonian@codeaurora.org>
2017-02-13 09:09:47 +08:00
Linux Build Service Account
3a7e752617 Merge "spi: spi_qsd: Use the right device for dma_unmap_single operation" 2017-02-12 14:28:20 -08:00
Sandeep Panda
73ab4eae31 msm: mdss: mask DSI FIFO overflow errors during BTA operation
For some DSI panels where porch values are less, if BTA operation
does not finish in BLLP period, then fake overflow errors are
expected. So disable DSI FIFO overflow errors before triggering
BTA and enable it back once BTA acknowledgment is received for
video mode panels.

Change-Id: If63ac6435f5786c834fe797478c38a9a2f51076b
Signed-off-by: Sandeep Panda <spanda@codeaurora.org>
2017-02-12 08:36:14 -08:00
Prasad Sodagudi
6ff89e188d ARM: dts: msm: Enable pil_modem for apq8998 mediabox
To support WLAN on apq8998 mediabox platform, modem PIL is needed.

Change-Id: I542053414f5de256514f252b8c019d498756bf80
Signed-off-by: Prasad Sodagudi <psodagud@codeaurora.org>
Signed-off-by: Satya Durga Srinivasu Prabhala <satyap@codeaurora.org>
2017-02-12 07:59:39 -08:00
Ghanim Fodi
7468733078 msm: ipa3: UL event based completion
Split the joint LAN_WAN producer pipe to two
pipes, one for LAN and one for WAN.
Use event based completion for the WAN pipe
instead of status based to improve UL performance.

CRs-fixed: 1098422
Change-Id: I1776a5b9dc6265dc862a2eeb9419dce34efaad8b
Signed-off-by: Ghanim Fodi <gfodi@codeaurora.org>
2017-02-12 16:02:03 +02:00
Abhinav Kumar
1e71162129 drm/msm/sde: signal pending PAGE_FLIP events
Currently any pending PAGE_FLIP events are not signalled
by the drm driver. Userspace blocks on these events
to trigger a redraw. Add support to signal the PAGE_FLIP
complete events after commit is complete.

Change-Id: I887efc48f8890e5e1ed055f7016393a90fc26fa6
Signed-off-by: Abhinav Kumar <abhinavk@codeaurora.org>
2017-02-11 13:06:47 -08:00
Linux Build Service Account
88fee0f381 Merge "config: Add new file msmcortex_mediabox_defconfig" 2017-02-11 01:25:30 -08:00
Linux Build Service Account
a9868ae54b Merge "ARM: dts: msm: add mdss node for sdm630" 2017-02-11 01:25:28 -08:00
Linux Build Service Account
befaaa3795 Merge "qcom: qpnp-smb2: Reset switcher_power_ok irq count when USBIN_UV fires" 2017-02-11 01:25:25 -08:00
Linux Build Service Account
58a2863f69 Merge "qcom: smb-lib: make smb_irq_info common for smb2 and smb138x chargers" 2017-02-11 01:25:23 -08:00
Linux Build Service Account
713e5d786e Merge "qcom: qnovo: Update fcc and fv through batt psy" 2017-02-11 01:25:21 -08:00
Linux Build Service Account
ebcc5b8ada Merge "arm64: process: Update the kernel offset" 2017-02-11 01:25:20 -08:00
Linux Build Service Account
12ab5894a7 Merge "defconfig: msm: Enable EL2 tlb handler" 2017-02-11 01:25:19 -08:00
Linux Build Service Account
e189ae8694 Merge "arm64: raise exception to EL2 for sync aborts" 2017-02-11 01:25:18 -08:00
Linux Build Service Account
cf0c08925b Merge "qpnp-smb2: Add DT option for enabling input suspend on fake battery" 2017-02-11 01:25:17 -08:00
Linux Build Service Account
c905163809 Merge "msm: ipa3: fix race condition in SSR" 2017-02-11 01:25:17 -08:00
Linux Build Service Account
70df1c3981 Merge "input: keyboard: correct suspend/resume for gpio_keys" 2017-02-11 01:25:16 -08:00
Linux Build Service Account
e884d847c2 Merge "input: gpio_keys: Add support for pinctrl framework" 2017-02-11 01:25:15 -08:00
Linux Build Service Account
76dfa08d86 Merge "ARM: dts: msm: Disable CXIP LM feature for sdm630" 2017-02-11 01:25:14 -08:00
Linux Build Service Account
1d06a9f4b8 Merge "defconfig: msm: Enable BALANCE_ANON_FILE_RECLAIM" 2017-02-11 01:25:13 -08:00
Linux Build Service Account
aee0c0c2ad Merge "msm: mhi: fix latent issues in MHI drivers" 2017-02-11 01:25:12 -08:00
Linux Build Service Account
cba45acfcb Merge "ath10k: converge TLV and HL1.0 params and API" 2017-02-11 01:25:12 -08:00
Linux Build Service Account
8e60b717af Merge "tracing: Add clock trace events only for COMMON_CLK_MSM" 2017-02-11 01:25:11 -08:00
Linux Build Service Account
ac25dfbde4 Merge "defconfig: Enable FG GEN3 and QNOVO configs for sdm660 32-bit" 2017-02-11 01:25:09 -08:00