mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
f6a80248e3a5ec61af178314e714ad47fa814639
Support low power consumption mode when PCIe suspend. 1. Add missing Kconfig and Makefile 2. Add usb3phy_grf_p reset 3. Turn off PCIe phy pd 4. Write some more MAGIC registers to enter low power mode like following: /* enter PCIe phy low power mode */ writel(0x36, priv->mmio + 0x2150); writel(0x36, priv->mmio + 0x3150); writel(0x02, priv->mmio + 0x21e8); writel(0x02, priv->mmio + 0x31e8); writel(0x0c, priv->mmio + 0x2080); writel(0x0c, priv->mmio + 0x3080); writel(0x08, priv->mmio + 0x20c0); writel(0x08, priv->mmio + 0x30c0); writel(0x08, priv->mmio + 0x2058); writel(0x10, priv->mmio + 0x2044); writel(0x10, priv->mmio + 0x21a8); writel(0x10, priv->mmio + 0x31a8); writel(0x08, priv->mmio + 0x2058); writel(0x08, priv->mmio + 0x3058); writel(0x40, priv->mmio + 0x205c); writel(0x40, priv->mmio + 0x305c); writel(0x08, priv->mmio + 0x2184); writel(0x08, priv->mmio + 0x3184); writel(0x00, priv->mmio + 0x2150); writel(0x00, priv->mmio + 0x3150); writel(0x10, priv->mmio + 0x20e0); writel(0x00, priv->mmio + 0x21e8); writel(0x00, priv->mmio + 0x31e8); Change-Id: I2dc7f99e54d336f45a13b2842bde1a02300311fc Signed-off-by: Simon Xue <xxm@rock-chips.com>
Linux kernel
============
There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.
In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``. The formatted documentation can also be read online at:
https://www.kernel.org/doc/html/latest/
There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.
See Documentation/00-INDEX for a list of what is contained in each file.
Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.
Description
Languages
C
97.7%
Assembly
1.6%
Makefile
0.3%
Perl
0.1%