Commit Graph

608254 Commits

Author SHA1 Message Date
Finley Xiao
cb047d4ffa Revert "arm64: dts: rockchip: rk3308: Assign emmc, sdio, sdmmc clocks to DIV50"
This reverts commit 699150fe82.

Change-Id: I83f6476540d71e0eba45e27b29f585bb789ee36f
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-04 16:37:25 +08:00
Zorro Liu
952f658854 arm: dts: modify mpu6050 layout orientation on rk3288-evb-android-rk808-edp board
Change-Id: I95d94cdd9beca9b70eaf72f0baa1837279b9a9b6
Signed-off-by: Zorro Liu <lyx@rock-chips.com>
2018-04-04 16:20:14 +08:00
hardy.huang
c23500c44d camera: rockchip: camsys_drv: v0.0x29.0
fix camera mipi phy config for rk3288.

Change-Id: If96aab66801ff94539ef9d8d8f337f45c6b25d4a
Signed-off-by: hardy.huang <hardy.huang@rock-chips.com>
2018-04-04 15:54:20 +08:00
Zhou weixin
3766257b45 arm: dts: rockchip: rk3126-bnd-m88-emmc: add m88 cif config
Change-Id: I2d22eae91207cb41b11c42212262962ea29b48ad
Signed-off-by: Weixin Zhou <zwx@rock-chips.com>
2018-04-04 15:52:20 +08:00
Sandy Huang
4efa24cc3f drm/rockchip: rgb: init connector->port
this will be used by:
	rockchip_drm_bind()
	    ->show_loader_logo()
		->of_parse_display_resource()
		    ->find_connector_by_node()

Change-Id: I953c06d291a9475b7a60882039c3fc0e26959e46
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
2018-04-04 15:52:02 +08:00
Sandy Huang
24a11a428c drm/rockchip: rk3399 vop: fix global alpha value offset config error
Change-Id: I6d6a9693d0229ad7f6f4e13929173be28a57ef43
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
2018-04-04 15:51:27 +08:00
William Wu
cbff3d0ae5 arm64: dts: rockchip: reconfig dwc2 device fifo size
According to the dwc2 programmer's guide v3.10a, in '2.1.3.2 Dedicated
FIFO Mode with No Thresholding', it suggested that:

Device RxFIFO =
- Scatter/Gather DMA mode:
(4 * number of control endpoints + 6) + ((largest USB packet used / 4) +
1 for status information) + (2 * number of OUT endpoints) + 1 for Global NAK

on rockchip platforms:
(4 * 1 + 6) + ((1024 / 4) + 1) + (2 * 6) + 1 = 280

- Slave or Buffer DMA mode:
(5 * number of control endpoints + 8) + ((largest USB packet used / 4) +
1 for status information) + (2 * number of OUT endpoints) + 1 for Global NAK

on rockchip platforms:
(5 * 1 + 8) + ((1024 / 4) + 1) + (2 * 6) + 1 = 283

Device IN Endpoint TxFIFO =
The TxFIFO must equal at least one MaxPacketSize (MPS).

In addition to RxFIFO and TxFIFOs, refer to dwc2 databook v3.10a,
'Figure 2-13 Device Mode FIFO Address Mapping and AHB FIFO Access Mapping
(Dedicated FIFO)', it required that when the device is operating in non
Scatter Gather Internal DMA mode, the last locations of the SPRAM are used
to store the DMAADDR values for each Endpoint (1 location per endpoint).

When the device is operating in Scatter Gather mode, then the last locations
of the SPRAM store the Base Descriptor address, Current Descriptor address,
Current Buffer address, and status quadlet information for each endpoint
direction (4 locations per Endpoint). If an Endpoint is bidirectional , then
4 locations will be used for IN, and another 4 for OUT).

Considering that the total FIFO size of dwc2 otg is 0x3cc (972),
and we must reserve (4 * 13) = 52 locations for all Endpoints.
So reconfig dwc2 device fifo size as follows:

Device RxFIFO = 280
Device IN Endpoint TxFIFO
- FIFO #0 = (64 / 4) = 16 (Assuming this is used for EP0)
- FIFO #1 = (1024/4) = 256 (Assuming this is used for Isochronous)
- FIFO #2 = (512/4) = 128
- FIFO #3 = (512/4) = 128
- FIFO #4 = (256/4) = 64
- FIFO #5 = (128/4) = 32
- FIFO #6 = (64/4) = 16

After reconfig the dwc2 device fifo size, test mtp write on rockchip
platform (PC -> rockchip platform) on rk312x/rk3326/px30/rk3288 evb,
when mask the 'vfs_write' in f_mtp.c, the writing data rate can be
increased from 16MBps ~ 20MBps to 30MBps ~ 36MBps on different kinds
of rockchip evbs.

Change-Id: I52c64a279523c811f706e69e427b0a6e8c45683b
Signed-off-by: William Wu <william.wu@rock-chips.com>
2018-04-04 15:49:20 +08:00
William Wu
8cfb4da10e ARM: dts: rockchip: reconfig dwc2 device fifo size
According to the dwc2 programmer's guide v3.10a, in '2.1.3.2 Dedicated
FIFO Mode with No Thresholding', it suggested that:

Device RxFIFO =
- Scatter/Gather DMA mode:
(4 * number of control endpoints + 6) + ((largest USB packet used / 4) +
1 for status information) + (2 * number of OUT endpoints) + 1 for Global NAK

on rockchip platforms:
(4 * 1 + 6) + ((1024 / 4) + 1) + (2 * 6) + 1 = 280

- Slave or Buffer DMA mode:
(5 * number of control endpoints + 8) + ((largest USB packet used / 4) +
1 for status information) + (2 * number of OUT endpoints) + 1 for Global NAK

on rockchip platforms:
(5 * 1 + 8) + ((1024 / 4) + 1) + (2 * 6) + 1 = 283

Device IN Endpoint TxFIFO =
The TxFIFO must equal at least one MaxPacketSize (MPS).

In addition to RxFIFO and TxFIFOs, refer to dwc2 databook v3.10a,
'Figure 2-13 Device Mode FIFO Address Mapping and AHB FIFO Access Mapping
(Dedicated FIFO)', it required that when the device is operating in non
Scatter Gather Internal DMA mode, the last locations of the SPRAM are used
to store the DMAADDR values for each Endpoint (1 location per endpoint).

When the device is operating in Scatter Gather mode, then the last locations
of the SPRAM store the Base Descriptor address, Current Descriptor address,
Current Buffer address, and status quadlet information for each endpoint
direction (4 locations per Endpoint). If an Endpoint is bidirectional , then
4 locations will be used for IN, and another 4 for OUT).

Considering that the total FIFO size of dwc2 otg is 0x3cc (972),
and we must reserve (4 * 13) = 52 locations for all Endpoints.
So reconfig dwc2 device fifo size as follows:

Device RxFIFO = 280
Device IN Endpoint TxFIFO
- FIFO #0 = (64 / 4) = 16 (Assuming this is used for EP0)
- FIFO #1 = (1024/4) = 256 (Assuming this is used for Isochronous)
- FIFO #2 = (512/4) = 128
- FIFO #3 = (512/4) = 128
- FIFO #4 = (256/4) = 64
- FIFO #5 = (128/4) = 32
- FIFO #6 = (64/4) = 16

After reconfig the dwc2 device fifo size, test mtp write on rockchip
platform (PC -> rockchip platform) on rk312x/rk3326/px30/rk3288 evb,
when mask the 'vfs_write' in f_mtp.c, the writing data rate can be
increased from 16MBps ~ 20MBps to 30MBps ~ 36MBps on different kinds
of rockchip evbs.

Change-Id: Icdf8a5dd95f96d174233e4ffc765c9a982b9f0b6
Signed-off-by: William Wu <william.wu@rock-chips.com>
2018-04-04 15:49:15 +08:00
Zhou weixin
f830af5a02 input/touchscreen/rockchip_gslX680: add reset power control and revert_y setting
Change-Id: I4e836fdf59e4541c067bf35bec86bf4b6a5c0347
Signed-off-by: Weixin Zhou <zwx@rock-chips.com>
2018-04-04 15:44:38 +08:00
Zhou weixin
c5c8a9392d arm: dts: rockchip: rk3126-bnd-m88-emmc: add new board for android go test
Change-Id: I70a421782cc641c876dc436f732af2a52b230ae8
Signed-off-by: Zhou weixin <zwx@rock-chips.com>
2018-04-04 15:44:08 +08:00
Tony Xie
ed38d26a33 pinctrl: support pinctrl driver for the RK817&RK809 PMIC
Change-Id: I9a24ee0d9266a000d582f8ffff8b0c872e3a0769
Signed-off-by: Tony Xie <tony.xie@rock-chips.com>
2018-04-03 20:09:59 +08:00
Tony Xie
1a69527184 arm64: dts: rockchip: add pinctrl info for RK817&RK809
Change-Id: I23dc0c8271ba8cb566fa16bbd179fe6e8aa3b591
Signed-off-by: Tony Xie <tony.xie@rock-chips.com>
2018-04-03 19:55:46 +08:00
David Wu
927ae0676c arm64: dts: rockchip: Fix the mac compatible for rk3308
Change-Id: I4a58d831fea81bf5874603159a13e286baae3cda
Signed-off-by: David Wu <david.wu@rock-chips.com>
2018-04-03 19:28:11 +08:00
Tony Xie
ff5c625f04 arm64: dts: rockchip: adjust dmc opp-table for px30
Change-Id: I3c51f94fbb5bac52553e38c699b4355d5f8f7518
Signed-off-by: Tony Xie <tony.xie@rock-chips.com>
2018-04-03 19:25:11 +08:00
Wyon Bi
868a2dedf0 clk: rockchip: px30: Fix i2s out mclk
Fixes: f6128506aa ("clk: rockchip: px30: Fix i2s out mclk")
Change-Id: I90dd4d1cdb1f3a2e9009dcb574115a5e7504fc32
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
2018-04-03 12:33:46 +08:00
Feng Mingli
158d412110 usb: dwc_otg_310: pcd: in ep do memory copy after alloc aligned buffer
If more than two consecutive requests queue into in ep, maybe some
requests need alloc temporary aligned buffer, only the first request
will do memory copy to the aligned buffer, but start_next_request()
function missing memory copy, then the transmission of data will be
wrong, so do memory copy after alloc aligned buffer right away.

TEST=rk3288 use rndis gadget function, Linux PC use this command
can't ping: ping IP -s 1473

Change-Id: I1c5339dbb089d8a94d8093baa2a801f54e450267
Signed-off-by: Feng Mingli <fml@rock-chips.com>
2018-04-03 11:41:40 +08:00
Tao Huang
0616f26326 rk: arm64: support build boot.img
Change-Id: Iaf50be16e321b13bbe45b9beb335d542e00507cf
Signed-off-by: Tao Huang <huangtao@rock-chips.com>
2018-04-02 21:36:20 +08:00
Finley Xiao
44822b1031 clk: rockchip: rk3399: Fix clk_cifout and clk_cifout_src
Change-Id: I1480615b8f8cfaab2b318e6b8438ead2232a238d
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-02 17:46:27 +08:00
Meng Dongyang
855763aa3c arm64: dts: rockchip: enable u2phy low power mode for rk3326-863
Add rockchip,low-power-suspend property to DT of u2phy to make
the port enter lower power state when suspend.

Change-Id: I88eef53b24c8859ebe2c2b3cb5ecbdc42b406d04
Signed-off-by: Meng Dongyang <daniel.meng@rock-chips.com>
2018-04-02 17:43:50 +08:00
Meng Dongyang
5e72cfa2a5 phy: rockchip-inno-usb2: make u2phy enter low power mode
Make u2phy enter low power mode when suspend. If config the DT of
u2phy port with "rockchip,low-power-mode" property, the port will
be config to lower power state when suspend.

Bvalid irq and linestate irq will be disabled in this mode.

Change-Id: Ie7d40a9a181b0622b1f8d062a741661548cabd59
Signed-off-by: Meng Dongyang <daniel.meng@rock-chips.com>
2018-04-02 17:43:50 +08:00
Meng Dongyang
a3b1bb7a7a Documentation: bindings: add rockchip,low-power-mode property for u2phy
Change-Id: Id99aeb68aa5b6174a3a97f413f09270d893cef4e
Signed-off-by: Meng Dongyang <daniel.meng@rock-chips.com>
2018-04-02 17:43:50 +08:00
Finley Xiao
cd5289db24 clk: rockchip: rk3308: Set max parent rate for vop fractional divider
Change-Id: I79b5b412e2952d48e83546dce69c6ce2fbe75e5b
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-02 17:01:54 +08:00
Finley Xiao
0689ad72e4 clk: rockchip: px30: Set max parent rate for i2s fractional divider
Change-Id: Ic3f3cc4fcc90821ec9ecf0d24e9e9fa877f7001f
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-02 17:01:54 +08:00
Finley Xiao
4186a0e423 clk: rockchip: Add supprot to limit input rate for fractional divider
From Rockchips fractional divider usage, some clocks can be generated
by fractional divider, but the input clock frequency of fractional
divider should be less than a specified value.

Change-Id: Ifd6c5f6a24a64021f990506e8657cd925f9b96f9
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-02 17:01:54 +08:00
Shunqing Chen
ec9e751d33 power: rk817-battery: add power_supply property for CTS.
Change-Id: I31bca691bc404d95b448bfbf1d92897fed2a5767
Signed-off-by: Shunqing Chen <csq@rock-chips.com>
2018-04-02 16:50:51 +08:00
Shunqing Chen
bb651e58d8 power: rk817-battery: get charging state from charger driver
Change-Id: I1cbf9befcb902a46c2e7a42664e4417ce1b441ea
Signed-off-by: Shunqing Chen <csq@rock-chips.com>
2018-04-02 16:50:51 +08:00
Tao Huang
642d98704a mmc: ratelimit error messages
Change-Id: Ida380e193ea4c1ad2c1347997a24b67ed05f7975
Signed-off-by: Tao Huang <huangtao@rock-chips.com>
2018-04-02 16:42:38 +08:00
Finley Xiao
37c869d6fc arm64: dts: rockchip: px30: Add SYS_STATUS_BOOST status for dmc
Change-Id: Id7096f0b558697101fd1ed6bcf72fec92c9ce7f2
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-02 14:58:40 +08:00
Finley Xiao
aec15a24a8 PM / devfreq: rockchip_dmc: Add touch boost support
Change-Id: I873891c79a75271ddb57cf8dcc25cf882d7c1126
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2018-04-02 14:58:40 +08:00
JinSen Chen
0b55661d58 ARM: dts: rk3288-evb-android-rk808-edp: update regulators node
set the regulator named "vcc_wl" stay on in suspend.

Change-Id: I6d21b8904a6367938a386df8e905ede62f4069a8
Signed-off-by: JinSen Chen <kevin.chen@rock-chips.com>
2018-04-02 11:25:01 +08:00
William Wu
f5c3dd417f usb: dwc_otg_310: hcd: avoid to free dma mem if irqs disabled
This patch fix the following warning when plug out
a dm9601 usb ethernet:

WARNING: at include/asm-generic/dma-mapping-common.h:274
Modules linked in: drmboot(P)
CPU: 5 PID: 1501 Comm: kworker/5:2 Tainted: P                4.4.103 #5
Hardware name: Rockchip rk3368 xkp board (DT)
Workqueue: usb_hub_wq hub_event
task: ffffffc0326d4100 task.stack: ffffffc0389fc000
PC is at __DWC_DMA_FREE+0x38/0xa0
LR is at dwc_otg_hcd_qh_free+0xe0/0x120
pc : [<ffffff8008678d60>] lr : [<ffffff8008675b48>] pstate: 204001c5
sp : ffffffc0389ffab0
...
Call trace:
[<ffffff8008678d60>] __DWC_DMA_FREE+0x38/0xa0
[<ffffff8008675b48>] dwc_otg_hcd_qh_free+0xe0/0x120
[<ffffff8008670768>] dwc_otg_hcd_endpoint_disable+0xa4/0xd
[<ffffff8008672538>] endpoint_disable+0x20/0x30
[<ffffff80085ef278>] usb_hcd_disable_endpoint+0x1c/0x24
[<ffffff80085f173c>] usb_disable_endpoint+0x80/0x8c
[<ffffff80085f19a8>] usb_disable_device+0x1f4/0x210
[<ffffff80085e9b08>] usb_disconnect+0x9c/0x1cc
[<ffffff80085eb434>] hub_event+0x740/0xe50
[<ffffff80080b723c>] process_one_work+0x254/0x3f0
[<ffffff80080b7c24>] worker_thread+0x304/0x418
[<ffffff80080bc578>] kthread+0xe8/0xf0
[<ffffff80080828d0>] ret_from_fork+0x10/0x40

Change-Id: I8958bb2a43307d214f7aaaecd337da30b645d8e1
Signed-off-by: William Wu <william.wu@rock-chips.com>
2018-04-02 11:16:27 +08:00
William Wu
55aaa15dde usb: dwc_otg_310: hcd: limit max size of aligned buffer
Limit the max size of aligned buffer to 64K. Because
64K buffer is enough for most of usb transfers, and
the aligned buffer is a coherent DMA buffer allocated
by dma_alloc_coherent, too large buffer may cause
coherent DMA memory allocation failure on some platforms.

Change-Id: Ib4895349be93d7a298f5cd08c609f1a8a81d2610
Signed-off-by: William Wu <william.wu@rock-chips.com>
2018-04-02 11:16:27 +08:00
Putin Lee
bbc53fb321 video/rockchip: rga2: Fix up dst vir address not 4k align will cause crash
If dst buf not 4k align vir address, mmu page may calculate error.
This situation will cause rga hardware not respond, cannot return irq_handle.

Change-Id: I29a104984415b6736713073684c2551252c975b9
Signed-off-by: Putin Lee <putin.li@rock-chips.com>
2018-03-30 19:29:54 +08:00
Sugar Zhang
b38255c756 arm64: dts: rockchip: rk3308-evb: add spdif_tx sound
Change-Id: I01aac5a063a93db302d00f48fd21bd24a6f7d3c3
Signed-off-by: Sugar Zhang <sugar.zhang@rock-chips.com>
2018-03-30 19:09:38 +08:00
Sugar Zhang
be9fe4845f arm64: dts: rockchip: rk3308: add spdif_tx node
Change-Id: I1dbca8538362665bca0d56e7142b743a8b44a956
Signed-off-by: Sugar Zhang <sugar.zhang@rock-chips.com>
2018-03-30 19:09:38 +08:00
Sandy Huang
77dbbdc036 drm/rockchp: rk3328 vop: fix post empty when plug out hdmi
case 1:
plug in hdmi and power on, after kernel complete and before android
start(maybe can update simplification boot.img) we plug out hdmi will
appear error log.

case 2:
plug in hdmi and power on, at the beginning of drm driver bind, plug out
hdmi, the hdmi irq maybe at disable state, so the vop is in running
state which is set at uboot. in this case vop will not to enable clk
refrerence, after driver probe complete, the unused clk maybe close by
clk driver framework. this will lead to vop appear error log:

[    4.898107] rockchip-vop ff370000.vop: [drm:vop_crtc_enable] Update mode to 720*288
[    4.900174] rockchip-vop ff370000.vop: [drm:vop_isr] *ERROR*BUS_ERROR irq err

solution:
1. disable vop all planes before disable crtc and enable crtc;
2. disable vop all planes when can't detect connect at power on.
3. enable dma stop before detach iommu and disable dma stop after attach
iommu.

Change-Id: Ia981d52c96a274fa177493d10362fd4e395a6707
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
2018-03-30 19:08:36 +08:00
zain wang
e2d158cc8e mfd/fusb302: some changes make code easier read
Using more meaningful MARCOs instead of number.

Change-Id: Ib643fffaacc9bfcb535284fe5b1d03ef819a62ae
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
194fcb2e2f mfd/fusb302: delay EVENT_CC when swap operations
Detached may occurred at swap operations. Don't ignore
the EVENT_CC during swapping at all, check the connection
after it.

Change-Id: I2c69c8e2a026e3524ee390e25db3bdf84dad7bdb
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
07de3dde4f Documentation: dt-bindings: fusb302: add power role compatible
Power role compatible can configure the typec power role,
and we can enable try.role function as well, that can
change the power role to our wanted if possible.

Change-Id: I85a3c4d0c5a54b37573f5fb24fe107d88f385021
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
b20bf318f2 mfd/fusb302: add drp.try_snk and drp.try_src functions
Sometimes we may prefer our port would be specified power
role when the both attaching port are DRP port. We can
enable this function in dts file, such as:
	fusb302,role = "ROLE_MODE_DRP";
	fusb302,try_role = "ROLE_MODE_DFP";
It would change the port power role to your wanted
if possible.

Change-Id: Id71595fa10c5c55755ac6b2965c3f14f593c2493
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
c427a55bee mfd/fusb302: support data role swap (UFP -> DFP)
This patch set a frame for DR_SWAP, and it only support UFP to DFP,
because there are many works to coordinate USB part and PD part when
change DFP to UFP.

Change-Id: Iebcccdcd9115c5be4704e6e8e0dc0b568a4ac48d
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
a6e6110873 mfd/fusb302: support vconn swap
Change-Id: I86490b4028b0a157128c8406163918806cf1ed5c
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
fdcef14e49 mfd/fusb302: support power role swap in DRP port
Change-Id: I233023de022eea2ff003f1af2b1763b056af25d7
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
2a3bd5ca5b mfd/fusb302: support DFP and UFP mode
If you set your port to DFP(UFP), the port would only detect
UFP(DFP) device. If you want your port to detect both UFP and DFP,
set it to DRP in dts.

Change-Id: I1b8dc46bd3538094a01ee3376bf019113622fcca
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
zain wang
eae30da164 mfd/fusb302: add marco for msg distinguish
Change-Id: Ia838905a72a3e4d3b3a1167fcb5ba6a3cbc6b53c
Signed-off-by: zain wang <wzz@rock-chips.com>
2018-03-30 14:16:37 +08:00
Xuhanrui
fbd1465b56 ARM64: dts: rockchip: add secure drm buffer for rk3328
default disable

Change-Id: Ic24b6e10f5ab34c755458df8b30f179c8a9277fd
Signed-off-by: Xuhanrui <xhr@rock-chips.com>
2018-03-29 16:46:23 +08:00
Huibin Hong
ea426efeac arm64: dts: rockchip: enable uart dma of rk3308
Change-Id: Icdaf0adda5a01f5c48ffeb93e0f4908bbccd9cdc
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2018-03-29 16:27:05 +08:00
Huibin Hong
5c158748ad soc: rockchip: grf: unmask uart dma request for RK3308 Soc
Change-Id: I06d955d92d04785bea3248b82fe99c515d471467
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2018-03-29 16:25:15 +08:00
Huibin Hong
9a3a19f563 arm64: dts: rockchip: add ramoops node of rk3308
Change-Id: I0b2e4ab39670b20532100a932bf75cd422fc9628
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2018-03-29 16:20:49 +08:00
Huibin Hong
49f0d85158 arm64: rk3308_linux_defconfig: enable pstore
Change-Id: I3cdd1df111ffd049becb6aeb3347b8fe09fa67a6
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
2018-03-29 16:20:49 +08:00