Commit Graph

603738 Commits

Author SHA1 Message Date
Jerry Xu
8d2502bbf4 ARM: dts: rk3288: add rockchip,lane-rate for mipi dsi panel
give an example for client.

Change-Id: Ifd674dd4b2162dfb2ae6b90b272d502918b34890
Signed-off-by: Jerry Xu <xbl@rock-chips.com>
2017-09-28 16:50:20 +08:00
Jerry Xu
5fbe472645 drm/rockchip: dsi: fix phy pll programming order
The order of the write registers is as follows:
0x17->0x18(lsb)->0x19->0x18(msb)->0x19

Change-Id: I3164a46ed49be611db5bd62d2ae7810613bdbfe0
Signed-off-by: Jerry Xu <xbl@rock-chips.com>
2017-09-28 16:49:55 +08:00
Wyon Bi
0f4abff0dd arm64: dts: rockchip: rk3368-px5-evb-android: add support for edp panel
Change-Id: Ic6405b3ed8c0c4ff63484782bbeacdada343e6df
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-28 15:20:41 +08:00
Jason Song
4fa7f00a2b arm64: dts: rockchip: use gpio macro instead of number for rk3368-px5-evb-android
Change-Id: I74ddedaa5c4ad95acac2b738804e22957899e511
Signed-off-by: Jason Song <sxj@rock-chips.com>
2017-09-28 14:22:23 +08:00
Douglas Anderson
fc03ac3fd3 UPSTREAM: phy: rockchip-typec: Don't set the aux voltage swing to 400 mV
On rk3399-gru-kevin there are some cases where we're seeing AUX CH
failures when trying to do DisplayPort over type C.  Problems are
intermittent and don't reproduce all the time.  Problems are often
bursty and failures persist for several seconds before going away.
The failure case I focused on is:
* A particular type C to HDMI adapter.
* One orientation (flip mode) of that adapter.
* Easier to see failures when something is plugged into the _other
  type C port at the same time.
* Problems reproduce on both type C ports (left and right side).

Ironically problems also stop reproducing when I solder wires onto the
AUX CH signals on a port (even if no scope is connected to the
signals).  In this case, problems only stop reproducing on the port
with the wires connected.

From the above it appears that something about the signaling on the
aux channel is marginal and any slight differences can bring us over
the edge to failure.

It turns out that we can fix our problems by just increasing the
voltage swing of the AUX CH, giving us a bunch of extra margin.  In DP
up to version 1.2 the voltage swing on the aux channel was specced as
.29 V to 1.38 V.  In DP version 1.3 the aux channel voltage was
tightened to be between .29 V and .40 V, but it clarifies that it
really only needs the lower voltage when operating at the highest
speed (HBR3 mode).  So right now we are trying to use a voltage that
technically should be valid for all versions of the spec (including
version 1.3 when transmitting at HBR3).  That would be great to do if
it worked reliably.  ...but it doesn't seem to.

It turns out that if you continue to read through the DP part of the
rk3399 TRM and other parts of the type C PHY spec you'll find out that
while the rk3399 does support DP 1.3, it doesn't support HBR3.  The
docs specifically say "RBR, HBR and HBR2 data rates only".  Thus there
is actually no requirement to support an AUX CH swing of .4 V.

Even if there is no actual requirement to support the tighter voltage
swing, one could possibly argue that we should support it anyway.  The
DP spec clarifies that the lower voltage on the AUX CH will reduce
cross talk in some cases and that seems like it could be beneficial
even at the lower bit rates.  At the moment, though, we are seeing
problems with the AUX CH and not on the other lines.  Also, checking
another known working and similar laptop shows that the other laptop
runs the AUX channel at a higher voltage.

Other notes:
* Looking at measurements done on the AUX CH we weren't actually
  compliant with the DP 1.3 spec anyway.  AUX CH peek-to-peek voltage
  was measured on rk3399-gru-kevin as .466 V which is > .4 V.
* With this new patch the AUX channel isn't actually 1.0 V, but it has
  been confirmed that the signal is better and has more margin.  Eye
  diagram passes.
* If someone were truly an expert in the Type C PHY and in DisplayPort
  signaling they might be able to make things work and keep the
  voltage at < .4 V.  The Type C PHY seems to have a plethora of
  tuning knobs that could almost certainly improve the signal
  integrity.  Some of these things (like enabling tx_fcm_full_margin)
  even seem to fix my problems.  However, lacking expertise I can't
  say whether this is a better or worse solution.  Tightening signals
  to give cleaner waveforms can often have adverse affects, like
  increasing EMI or adding noise to other signals.  I'd rather not
  tune things like this without a healthy application of expertise
  that I don't have.

Change-Id: Ifa4fbb8844edd731debc4a469b762afdcdd449c2
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
2017-09-28 14:13:09 +08:00
Douglas Anderson
e35d5a0ac9 UPSTREAM: phy: rockchip-typec: Set the AUX channel flip state earlier
On some DP monitors we found that setting the wrong flip state on the
AUX channel could cause the monitor to stop asserting HotPlug Detect
(HPD).  Setting the right flip state caused these monitors to start
asserting HotPlug Detect again.

Here's what we believe was happening:
* We'd plug in the monitor and we'd see HPD assert
* We'd quickly see HPD deassert
* The kernel would try to init the type C PHY but would init it in USB
  mode (because there was a peripheral there but no HPD)
* Because the kernel never set the flip mode properly we'd never see
  the HPD come back.

With this change, we'll still see HPD disappear (we don't think
there's anything we can do about that), but then it will come back.

Overall we can say that it's sane to set the AUX channel flip state
even when HPD is not asserted.

NOTE: to make this change possible, I needed to do a bit of cleanup to
the tcphy_dp_aux_calibration() function so that it doesn't ever
clobber the FLIP state.  This made it very obvious that a line of code
documented as "setting bit 12" also did a bunch of other magic,
undocumented stuff.  For now I'll just break out the bits and add a
comment that this is black magic and we'll try to document
tcphy_dp_aux_calibration() better in a future CL.

ALSO NOTE: the old function used to write a bunch of hardcoded
values in _some_ cases instead of doing a read-modify-write.  One
could possibly assert that these could have had (beneficial) side
effects and thus with this new code (which always does
read-modify-write) we could have a bug.  We shouldn't need to worry,
though, since in the old code tcphy_dp_aux_calibration() was always
called following the de-assertion of "reset" the the type C PHY.
...so the type C PHY was always in default state.  TX_ANA_CTRL_REG_1
is documented to be 0x0 after reset.  This was also confirmed by
printk.

Change-Id: Ie17b71f525dd39fc777f5072c16bb9cc9e6ff2ab
Suggested-by: Shawn Nematbakhsh <shawnn@chromium.org>
Reviewed-by: Chris Zhong <zyw@rock-chips.com>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
2017-09-28 14:12:59 +08:00
Shawn Lin
f404c714d0 UPSTREAM: phy: rockchip-typec: remove unused dfp variable
In order to silent the 'W=1' compile warning:

drivers/phy/rockchip/phy-rockchip-typec.c: In function 'tcphy_get_mode':
drivers/phy/rockchip/phy-rockchip-typec.c:625:7: warning: variable 'dfp'
set but not used [-Wunused-but-set-variable]

Change-Id: I9aee0963db1fa23768550ae01c07190d5b8b2697
Cc: Chris Zhong <zyw@rock-chips.com>
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
2017-09-28 14:12:53 +08:00
Vivek Gautam
33273664b2 UPSTREAM: phy: Group vendor specific phy drivers
Adding vendor specific directories in phy to group
phy drivers under their respective vendor umbrella.

Also updated the MAINTAINERS file to reflect the correct
directory structure for phy drivers.

Change-Id: I94a1894be5f5134dfe819aee266d735b44a44ada
Signed-off-by: Vivek Gautam <vivek.gautam@codeaurora.org>
Acked-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Krzysztof Kozlowski <krzk@kernel.org>
Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Heiko Stuebner <heiko@sntech.de>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Chen-Yu Tsai <wens@csie.org>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
Cc: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Stephen Boyd <stephen.boyd@linaro.org>
Cc: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-arm-msm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Cc: linux-renesas-soc@vger.kernel.org
Cc: linux-rockchip@lists.infradead.org
Cc: linux-samsung-soc@vger.kernel.org
Cc: linux-usb@vger.kernel.org
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
2017-09-28 14:12:47 +08:00
Mark Yao
49648963fb arm64: dts: rockchip: add gamma lut for rk3399 evb3 android
Change-Id: I08fc9a93047886df23f97ddd249abb591a9b47ff
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-28 14:10:19 +08:00
Mark Yao
3343d6569e drm/rockchip: vop: support parse dsp-lut from dts
Change-Id: I2d827f44457aa06250a672e421cf31347254b57c
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-27 15:16:41 +08:00
Mark Yao
e7942c8835 drm/rockchip: logo: remove logo memory when show logo failed
Change-Id: I8191581a802b6dc74c23fc08d74f226ce4b38d40
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-27 10:39:08 +08:00
Mark Yao
973913b813 drm/rockchip: logo: fixup display state when show logo failed
Change-Id: I7c2afa8803d56333252306bd5039eddf4083c1f0
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-27 10:39:08 +08:00
Mark Yao
39d2b5207c drm/rockchip: vop: correct afbc atomic check
Afbc only check the new state, If new atomic state has no plane state,
But old plane state has afbdc, the afbc check would be wrong, and cause
display abnormal.

Change-Id: I078241149c302ca137bec69f310555c7c37c6992
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-27 10:16:40 +08:00
buluess.li
18506aa60b ARM: dts: rockchip: add peripheral for rk3229-evb
enable the following peripherals:hdmi/wifi/
hdmi_sound/spdif/sdio/sdmmc/hym8563(rtc);
enable the integrated phy for gmac by default.

Change-Id: I92f10e02c5c783c044ab4a080f6f553458d5a971
Signed-off-by: Xinhuang Li <buluess.li@rock-chips.com>
2017-09-26 18:11:12 +08:00
Mark Yao
2d604c4ebc video/rockchip: rga2: using common dma_buf api for ion dma fd
Change-Id: Iea8e6104f06341a5cadecec84ebdbd01d0512af1
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-26 16:00:24 +08:00
Wyon Bi
aec25fa538 drm/rockchip: dsi: fix logic error in rockchip_dsi_host_attach()
At this point in time, dsi->slave is always NULL, so fix it.

Change-Id: I4f5a75d2547b1083751fcbbb0c7e0c568dc19028
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-26 15:59:48 +08:00
Wyon Bi
1a604d130e ARM: dts: rockchip: rk3288: add reset for dsi node
Change-Id: I99213f8c44c5b9123f5adc9cbc5b3db1660ed363
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-26 15:59:31 +08:00
Wyon Bi
11e801adcc drm/rockchip: dsi: properly check return value of some functions
Fixes: d6dfcd07b7 ("drm/rockchip: dw-mipi-dsi: analyze the platform parameters in the probe function")
Change-Id: Iecf9532f52a1b27ea063556701f840329881a2e2
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-26 15:59:22 +08:00
David Wu
30027c2fda ARM: rockchip_defconfig: Enable CONFIG_KEYBOARD_ADC
Change-Id: I04aeb6a78ef37fa97ae190ac985cd67d00493041
Signed-off-by: David Wu <david.wu@rock-chips.com>
2017-09-26 15:58:48 +08:00
Liang Chen
9872adb6f4 ARM: dts: add key event for rk3126-evb
Change-Id: Id50dcb060dc505a9c938ac63daa335455eb0d741
Signed-off-by: Liang Chen <cl@rock-chips.com>
2017-09-26 15:57:24 +08:00
Huibin Hong
7d71393f5e serial: 8250_dma: set rx_running 0 when release
Fix issue like, rx_running is set 1 after first start rx.
But rx_running is still 1 after stop rx, which causes
dma can not be started when second start rx.

Change-Id: Id2f3a535da1b3609e8af287edbcc2e25fb7ae922
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2017-09-26 14:16:26 +08:00
Huibin Hong
f5e7c42ed2 serial: 8250_dw: Allow hardware flow control to be used
In the most common use case, the Synopsys DW UART driver does not
set the set_termios callback function.  This prevents UPSTAT_AUTOCTS
from being set when the UART flag CRTSCTS is set.  As a result, the
driver will use software flow control as opposed to hardware flow
control.

To fix the problem, the set_termios callback function is set to the
DW specific function.  The logic to set UPSTAT_AUTOCTS is moved so
that any clock error will not affect setting the hardware flow
control.

Change-Id: Iea1e99512f0818eaa1642d25eb1ad02da049e8c6
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2017-09-26 14:16:16 +08:00
Huibin Hong
796b13f24a dmaengine: pl330: pl330_tasklet init power_down by pch->active
To fix issue like this:
dma-pl330 ff6d0000.dma-controller: pl330_update:1733 Unexpected!
dma-pl330 ff6d0000.dma-controller: DMAC halted!

The root cause is DMA clk is closed when DMA interrupt is
in service. This may happen, as follow:

1. When pl330_terminate_all is called, and set pch->active false,
power_down is true, call pm_runtime_put_autosuspend.
2. Then pl330_tasklet is called, if power_down is also true, call
pm_runtime_put_autosuspend again.
3. DMA is opened again, because the autosuspend is asyn, it may close
the DMA clk. If DMA interrupt is coming, it causes the issue.

Change-Id: Ib1feb508c16afb4bc9ced0c3660f2b6b4a19c068
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2017-09-26 14:13:03 +08:00
Huang jianzhi
d148748aba ARM: dts: rockchip: fix incorrect settings of keys for rk3288-evb-android-act8846-edp
Change-Id: Ic524250720bbaba9c2c0cec3999ce9a9ac4baa1b
Signed-off-by: Huang jianzhi <jesse.huang@rock-chips.com>
2017-09-25 21:10:17 +08:00
Mark Yao
ef13fd40c5 drm/rockchip: vop: fix bandwidth data overflow
Change-Id: I89df60f92f30452c1ff265ba380f6f8029d02163
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-25 21:07:30 +08:00
zhangyunlong
59ad2045cb camera: rockchip: camsys_drv: v0.0x22.5
gpio base start from 1000,adapt to it.

Change-Id: I6cef14c4698d2e3dedb84f0bc4e84ee79788c495
Signed-off-by: zhangyunlong <dalon.zhang@rock-chips.com>
2017-09-25 16:52:34 +08:00
Randy Li
77a680a340 video: rockchip: vpu: remove map to kernel method
The scaling list buffer handle under the pps unit
will be translated into the DMA address for the device,
but the processing is done under the kernel, so the
iommu of the device won't be invoked. We don't need to
cache it.

Using the standard kernel method is enough to access
the memory under the kernel space, so all the map to
kernel methods of the memory management are removed.

A few steps for memory mapping are also merged in
this patch.

Change-Id: Ia3f6f38568aed8021baff757720453c4eea03b90
Signed-off-by: ayaka <ayaka@soulik.info>
Signed-off-by: Randy Li <randy.li@rock-chips.com>
2017-09-25 11:47:10 +08:00
Mark Yao
49a36bd0f6 drm/rockchip: vop bandwidth interface
Change-Id: I1970d4e613775626481f471865f6945c378de6a7
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-25 10:57:56 +08:00
Zhen Chen
fbb30d6372 ARM: dts: rk312x: fix incorrect settings of GPU
Change-Id: I1ad7f60eea5c79f266aaad25ba4180d3ea84a170
Signed-off-by: Zhen Chen <chenzhen@rock-chips.com>
2017-09-25 10:51:16 +08:00
wlq
0f72d66f64 ASoC: codecs: tc358749x adjust power on timing
Change-Id: I4e702b556cd7304c2ab19a62d871634243ea9147
Signed-off-by: wlq <wlq@rock-chips.com>
2017-09-25 10:31:19 +08:00
Xinhuang Li
51115317ed ARM: dts: rk322x: add video decoder nodes
Change-Id: Ie21008c35b22855f252a1ef21a8caa981660530a
Signed-off-by: Xinhuang Li <buluess.li@rock-chips.com>
2017-09-22 17:55:56 +08:00
Sandy Huang
f98dd69d61 drm/panel: simple: add power-invert for some special hardwre
if power-invert exist the panel power need to disable ldo when
power on and enable ldo when power off otherwise it's opposite.

example:
	panel {
		...

		power-invert;

		...
	};

Change-Id: Ida5718d01044873cdd7c753c4e8b872dc1e52099
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
2017-09-22 15:03:50 +08:00
Sugar Zhang
28a95ab086 ARM: dts: rockchip: split i2s mclk pinctrl from i2s bus
because currently mclk is handled by codec side, so the
associated pinctrl should be handled by codec too.

Change-Id: I0611b7a291351a20f72b5124c501dc79d92787d6
Signed-off-by: Sugar Zhang <sugar.zhang@rock-chips.com>
2017-09-22 15:03:08 +08:00
Sugar Zhang
721e28dd91 arm64: dts: rockchip: split i2s mclk pinctrl from i2s bus
because currently mclk is handled by codec side, so the
associated pinctrl should be handled by codec too.

Change-Id: I55db6e9a0181cae0cb414b9dcacae7ff0214b50c
Signed-off-by: Sugar Zhang <sugar.zhang@rock-chips.com>
2017-09-22 15:03:03 +08:00
Alex Zhao
281a69cea9 ARM: dts: rockchip: add ap6255 support for rk3229-gva-sdk
1.set vccio2 to 1.8v
2.add sdio 3.0 support

Change-Id: Iee26c339b1a38543d9275dc0fa9e5bfbba0b7c3e
Signed-off-by: Alex Zhao <zzc@rock-chips.com>
2017-09-22 11:50:50 +08:00
Alex Zhao
2f76124072 ARM: dts: rockchip: add ap6255 support for rk3229-echo-v10
1.set vccio2 to 1.8v
2.add sdio 3.0 support

Change-Id: I7acfbd174bf0f4fb4c0b5625ceacd71826785ec5
Signed-off-by: Alex Zhao <zzc@rock-chips.com>
2017-09-22 11:50:32 +08:00
Jason Song
ea5b7fb141 arm64: dts: rockchip: add android dts for px5 evb v11.
Change-Id: I76ade321e2b17c9c46629bb4e83a55f3f650d194
Signed-off-by: Jason Song <sxj@rock-chips.com>
2017-09-22 09:38:43 +08:00
Jacob Chen
5ab215ee7f media: videobuf2: quick fix for dmabuf type
It's a bug in 4.4 kernel

Change-Id: I38807830d1a4289af65ebaed9c9ab179d2328827
Signed-off-by: Jacob Chen <jacob2.chen@rock-chips.com>
2017-09-21 19:10:12 +08:00
Jacob Chen
1750e8d84e media: rk-isp10: test suite 'v4l2-ctl' passed
Initialize default format for current stream and set stream state
to 'READY' in case of streaming on by user without passing format
to driver. Default format will be overridden by VIDIOC_S_FMT.

Implement VIDIOC_G_FMT and application can get the format info
of current stream now. This will become necessary when enable
'--set-fmt-video' option of v4l2-ctl test suite,

Set bytesused of each plane to its real size to prevent confusing.

The IO mode of vb2 queue 'VB2_DMABUF' is now supported.

Change-Id: Id52da502df8aea796b3405ebf472541a394afd80
Signed-off-by: Jacob Chen <cc@rock-chips.com>
2017-09-21 10:38:49 +08:00
Mark Yao
7f8599fc1a arm64: dts: rockchip: rk3366: add dma-coherent for rga device
When import dma_buf to rga driver, dma_map_sg will always do
cpu cache sync, it cause low performance.

Actually we don't want to do cpu cache sync on this context,
So set rga device with dma-coherent to skip cpu cache sync.

Change-Id: Ie256db6a072481953befafb5b8003b9c1e713436
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-21 10:37:06 +08:00
Mark Yao
f1df54b88e ARM: dts: rk3288-android: add dma-coherent for rga device
When import dma_buf to rga driver, dma_map_sg will always do
cpu cache sync, it cause low performance.

Actually we don't want to do cpu cache sync on this context,
So set rga device with dma-coherent to skip cpu cache sync.

Change-Id: Idfeb0de2e1d92873dcbd560cec40a4f9f8807013
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
2017-09-21 10:36:47 +08:00
zhoupeng
15f6b54578 arm64: dts: rk3399-sapphire-excavator-linux: add camera node
dts: support adv7181 sensor

Change-Id: Ie6e53a94f87d6a2a5c9ad9e4ae23e56244a4312b
Signed-off-by: zhoupeng <benjo.zhou@rock-chips.com>
2017-09-21 10:33:59 +08:00
zhoupeng
b4eb07282a media: soc_camera: add adv7181 sensor driver
Change-Id: I09f9e18ae61cdb165236c77ff467449ba6ae2537
Signed-off-by: Peng Zhou <benjo.zhou@rock-chips.com>
2017-09-21 10:33:44 +08:00
David Wu
3b7424f332 pinctrl: rockchip: Make the gpio base started from 1000
If the gpio base is started from 1000, the "gpio = 0" will
be invalid, that can avoid something unforeseen. The real
pin number is "gpio number - 1000".

If you cat the gpio log, you will see the log like this:
rk3399:/ # cat d/gpio
GPIOs 1000-1031, platform/pinctrl, gpio0:
 gpio-1004 (                    |bt_default_wake_host) in  lo
 gpio-1005 (                    |power               ) in  hi
 gpio-1009 (                    |bt_default_reset    ) out lo
 gpio-1010 (                    |reset               ) out lo
 gpio-1011 (                    |?                   ) out hi

GPIOs 1032-1063, platform/pinctrl, gpio1:
 gpio-1034 (                    |int-n               ) in  hi
 gpio-1035 (                    |vbus-5v             ) out lo
 gpio-1036 (                    |vbus-5v             ) out lo
 gpio-1045 (                    |enable              ) out hi
 gpio-1046 (                    |vsel                ) out lo
 gpio-1049 (                    |vsel                ) out lo
 gpio-1056 (                    |int-n               ) in  hi

GPIOs 1064-1095, platform/pinctrl, gpio2:
 gpio-1083 (                    |bt_default_rts      ) in  hi
 gpio-1090 (                    |bt_default_wake     ) in  hi

GPIOs 1096-1127, platform/pinctrl, gpio3:
 gpio-1111 (                    |mdio-reset          ) out hi

GPIOs 1128-1159, platform/pinctrl, gpio4:
 gpio-1150 (                    |?                   ) out hi
 gpio-1153 (                    |vcc5v0_host         ) out hi
 gpio-1156 (                    |hp det              ) in  hi

Change-Id: I744ddc1df6075b0a044d65c65622e2a59f3a332e
Signed-off-by: David Wu <david.wu@rock-chips.com>
2017-09-20 14:45:39 +08:00
Wyon Bi
4548e24e06 clk: rockchip: rk3366: remove CLK_IGNORE_UNUSED flag from DPHY related clocks
Change-Id: I05052257140d31e18de8e4bbd58ce72530042670
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-20 11:42:53 +08:00
Wyon Bi
bd1f544337 arm64: dts: rockchip: rk3366: add power-domains for mipi-dphy node
Change-Id: I581242c5b04cfbd3d6c124455d075d8152598942
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-20 11:42:40 +08:00
Wyon Bi
4e400b8842 phy: rockchip-inno-mipi-dphy: add runtime pm support
Change-Id: I06c311a282e2bd97c51e551306b999dbdedcdce5
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-20 11:40:52 +08:00
Wyon Bi
05949ca09c arm64: dts: rockchip: rk3368: add power-domains for mipi-dphy node
Change-Id: I7e4e03628efc4e29f04d465ec91969953881c332
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-20 11:40:28 +08:00
Wyon Bi
728ba28fc0 clk: rockchip: rk3368: remove CLK_IGNORE_UNUSED flag from DPHY related clocks
This flag was in place to prevent important clocks from getting gated
while they had no users. Now that the driver supports clocks
properly, we can drop this.

Change-Id: I91d0a5c000ed7215bf55dbc871e175ac79a1cd2a
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2017-09-20 11:40:21 +08:00
YouMin Chen
a1ce792af5 dt-bindings: dram: add the document for rk3399_dram_timing
Change-Id: I2412fb9d75050add02746b19ee23d1717d061dca
Signed-off-by: YouMin Chen <cym@rock-chips.com>
2017-09-20 11:31:34 +08:00