Linux 5.3-rc7
-----BEGIN PGP SIGNATURE----- iQFSBAABCAA8FiEEq68RxlopcLEwq+PEeb4+QwBBGIYFAl1tSg4eHHRvcnZhbGRz QGxpbnV4LWZvdW5kYXRpb24ub3JnAAoJEHm+PkMAQRiG018IAJGV7SbXggW/iC+e cSMlo8kPnuU7dKCUW+ngXnZY1xuDYWPhXMX9+yDYf2NfMYGdDGYZ+GRjSFim816w HsNsovnYiyxhkh+wA/DmZPWKdTgYrIxbPRO+MlO5ZfbxWNaLgSjqirz0iBITSv3S r2XLmFw8GVACv/GkNGrWBM53wpkJLHzvwaV9hg6dr8HFDipaEn7vEY9/LAN3S3fw reVwW6Q4N4+RSofM1eIGgAZsTYbYBDfri94mRQZ3y+Q8EkRGkJ270WKA0OAVFYS7 KA6nrjvGSYVtmDK3HORjbINQn3bXwIKeMZHl15c+LGM9ePwoHbsN3+smBswRX+R3 JDQjkhY= =DV37 -----END PGP SIGNATURE----- Merge 5.3-rc7' into android-mainline Linux 5.3-rc7 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: Idb7a4bac47aad24a134ab4e98ea40e7bf201895b
This commit is contained in:
commit
94cc606e3e
5
.mailmap
5
.mailmap
@ -64,6 +64,9 @@ Dengcheng Zhu <dzhu@wavecomp.com> <dengcheng.zhu@imgtec.com>
|
|||||||
Dengcheng Zhu <dzhu@wavecomp.com> <dczhu@mips.com>
|
Dengcheng Zhu <dzhu@wavecomp.com> <dczhu@mips.com>
|
||||||
Dengcheng Zhu <dzhu@wavecomp.com> <dengcheng.zhu@gmail.com>
|
Dengcheng Zhu <dzhu@wavecomp.com> <dengcheng.zhu@gmail.com>
|
||||||
Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
|
Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
|
||||||
|
Dmitry Safonov <0x7f454c46@gmail.com> <dsafonov@virtuozzo.com>
|
||||||
|
Dmitry Safonov <0x7f454c46@gmail.com> <d.safonov@partner.samsung.com>
|
||||||
|
Dmitry Safonov <0x7f454c46@gmail.com> <dima@arista.com>
|
||||||
Domen Puncer <domen@coderock.org>
|
Domen Puncer <domen@coderock.org>
|
||||||
Douglas Gilbert <dougg@torque.net>
|
Douglas Gilbert <dougg@torque.net>
|
||||||
Ed L. Cashin <ecashin@coraid.com>
|
Ed L. Cashin <ecashin@coraid.com>
|
||||||
@ -160,6 +163,8 @@ Matt Ranostay <mranostay@gmail.com> Matthew Ranostay <mranostay@embeddedalley.co
|
|||||||
Matt Ranostay <mranostay@gmail.com> <matt.ranostay@intel.com>
|
Matt Ranostay <mranostay@gmail.com> <matt.ranostay@intel.com>
|
||||||
Matt Ranostay <matt.ranostay@konsulko.com> <matt@ranostay.consulting>
|
Matt Ranostay <matt.ranostay@konsulko.com> <matt@ranostay.consulting>
|
||||||
Matt Redfearn <matt.redfearn@mips.com> <matt.redfearn@imgtec.com>
|
Matt Redfearn <matt.redfearn@mips.com> <matt.redfearn@imgtec.com>
|
||||||
|
Maxime Ripard <mripard@kernel.org> <maxime.ripard@bootlin.com>
|
||||||
|
Maxime Ripard <mripard@kernel.org> <maxime.ripard@free-electrons.com>
|
||||||
Mayuresh Janorkar <mayur@ti.com>
|
Mayuresh Janorkar <mayur@ti.com>
|
||||||
Michael Buesch <m@bues.ch>
|
Michael Buesch <m@bues.ch>
|
||||||
Michel Dänzer <michel@tungstengraphics.com>
|
Michel Dänzer <michel@tungstengraphics.com>
|
||||||
|
@ -1,20 +1,30 @@
|
|||||||
* ARC-HS Interrupt Distribution Unit
|
* ARC-HS Interrupt Distribution Unit
|
||||||
|
|
||||||
This optional 2nd level interrupt controller can be used in SMP configurations for
|
This optional 2nd level interrupt controller can be used in SMP configurations
|
||||||
dynamic IRQ routing, load balancing of common/external IRQs towards core intc.
|
for dynamic IRQ routing, load balancing of common/external IRQs towards core
|
||||||
|
intc.
|
||||||
|
|
||||||
Properties:
|
Properties:
|
||||||
|
|
||||||
- compatible: "snps,archs-idu-intc"
|
- compatible: "snps,archs-idu-intc"
|
||||||
- interrupt-controller: This is an interrupt controller.
|
- interrupt-controller: This is an interrupt controller.
|
||||||
- #interrupt-cells: Must be <1>.
|
- #interrupt-cells: Must be <1> or <2>.
|
||||||
|
|
||||||
Value of the cell specifies the "common" IRQ from peripheral to IDU. Number N
|
Value of the first cell specifies the "common" IRQ from peripheral to IDU.
|
||||||
of the particular interrupt line of IDU corresponds to the line N+24 of the
|
Number N of the particular interrupt line of IDU corresponds to the line N+24
|
||||||
core interrupt controller.
|
of the core interrupt controller.
|
||||||
|
|
||||||
intc accessed via the special ARC AUX register interface, hence "reg" property
|
The (optional) second cell specifies any of the following flags:
|
||||||
is not specified.
|
- bits[3:0] trigger type and level flags
|
||||||
|
1 = low-to-high edge triggered
|
||||||
|
2 = NOT SUPPORTED (high-to-low edge triggered)
|
||||||
|
4 = active high level-sensitive <<< DEFAULT
|
||||||
|
8 = NOT SUPPORTED (active low level-sensitive)
|
||||||
|
When no second cell is specified, the interrupt is assumed to be level
|
||||||
|
sensitive.
|
||||||
|
|
||||||
|
The interrupt controller is accessed via the special ARC AUX register
|
||||||
|
interface, hence "reg" property is not specified.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
core_intc: core-interrupt-controller {
|
core_intc: core-interrupt-controller {
|
||||||
|
@ -12,6 +12,7 @@ Required properties:
|
|||||||
- "microchip,ksz8565"
|
- "microchip,ksz8565"
|
||||||
- "microchip,ksz9893"
|
- "microchip,ksz9893"
|
||||||
- "microchip,ksz9563"
|
- "microchip,ksz9563"
|
||||||
|
- "microchip,ksz8563"
|
||||||
|
|
||||||
Optional properties:
|
Optional properties:
|
||||||
|
|
||||||
|
@ -15,10 +15,10 @@ Required properties:
|
|||||||
Use "atmel,sama5d4-gem" for the GEM IP (10/100) available on Atmel sama5d4 SoCs.
|
Use "atmel,sama5d4-gem" for the GEM IP (10/100) available on Atmel sama5d4 SoCs.
|
||||||
Use "cdns,zynq-gem" Xilinx Zynq-7xxx SoC.
|
Use "cdns,zynq-gem" Xilinx Zynq-7xxx SoC.
|
||||||
Use "cdns,zynqmp-gem" for Zynq Ultrascale+ MPSoC.
|
Use "cdns,zynqmp-gem" for Zynq Ultrascale+ MPSoC.
|
||||||
Use "sifive,fu540-macb" for SiFive FU540-C000 SoC.
|
Use "sifive,fu540-c000-gem" for SiFive FU540-C000 SoC.
|
||||||
Or the generic form: "cdns,emac".
|
Or the generic form: "cdns,emac".
|
||||||
- reg: Address and length of the register set for the device
|
- reg: Address and length of the register set for the device
|
||||||
For "sifive,fu540-macb", second range is required to specify the
|
For "sifive,fu540-c000-gem", second range is required to specify the
|
||||||
address and length of the registers for GEMGXL Management block.
|
address and length of the registers for GEMGXL Management block.
|
||||||
- interrupts: Should contain macb interrupt
|
- interrupts: Should contain macb interrupt
|
||||||
- phy-mode: See ethernet.txt file in the same directory.
|
- phy-mode: See ethernet.txt file in the same directory.
|
||||||
|
279
Documentation/process/embargoed-hardware-issues.rst
Normal file
279
Documentation/process/embargoed-hardware-issues.rst
Normal file
@ -0,0 +1,279 @@
|
|||||||
|
Embargoed hardware issues
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Scope
|
||||||
|
-----
|
||||||
|
|
||||||
|
Hardware issues which result in security problems are a different category
|
||||||
|
of security bugs than pure software bugs which only affect the Linux
|
||||||
|
kernel.
|
||||||
|
|
||||||
|
Hardware issues like Meltdown, Spectre, L1TF etc. must be treated
|
||||||
|
differently because they usually affect all Operating Systems ("OS") and
|
||||||
|
therefore need coordination across different OS vendors, distributions,
|
||||||
|
hardware vendors and other parties. For some of the issues, software
|
||||||
|
mitigations can depend on microcode or firmware updates, which need further
|
||||||
|
coordination.
|
||||||
|
|
||||||
|
.. _Contact:
|
||||||
|
|
||||||
|
Contact
|
||||||
|
-------
|
||||||
|
|
||||||
|
The Linux kernel hardware security team is separate from the regular Linux
|
||||||
|
kernel security team.
|
||||||
|
|
||||||
|
The team only handles the coordination of embargoed hardware security
|
||||||
|
issues. Reports of pure software security bugs in the Linux kernel are not
|
||||||
|
handled by this team and the reporter will be guided to contact the regular
|
||||||
|
Linux kernel security team (:ref:`Documentation/admin-guide/
|
||||||
|
<securitybugs>`) instead.
|
||||||
|
|
||||||
|
The team can be contacted by email at <hardware-security@kernel.org>. This
|
||||||
|
is a private list of security officers who will help you to coordinate an
|
||||||
|
issue according to our documented process.
|
||||||
|
|
||||||
|
The list is encrypted and email to the list can be sent by either PGP or
|
||||||
|
S/MIME encrypted and must be signed with the reporter's PGP key or S/MIME
|
||||||
|
certificate. The list's PGP key and S/MIME certificate are available from
|
||||||
|
https://www.kernel.org/....
|
||||||
|
|
||||||
|
While hardware security issues are often handled by the affected hardware
|
||||||
|
vendor, we welcome contact from researchers or individuals who have
|
||||||
|
identified a potential hardware flaw.
|
||||||
|
|
||||||
|
Hardware security officers
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
The current team of hardware security officers:
|
||||||
|
|
||||||
|
- Linus Torvalds (Linux Foundation Fellow)
|
||||||
|
- Greg Kroah-Hartman (Linux Foundation Fellow)
|
||||||
|
- Thomas Gleixner (Linux Foundation Fellow)
|
||||||
|
|
||||||
|
Operation of mailing-lists
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
The encrypted mailing-lists which are used in our process are hosted on
|
||||||
|
Linux Foundation's IT infrastructure. By providing this service Linux
|
||||||
|
Foundation's director of IT Infrastructure security technically has the
|
||||||
|
ability to access the embargoed information, but is obliged to
|
||||||
|
confidentiality by his employment contract. Linux Foundation's director of
|
||||||
|
IT Infrastructure security is also responsible for the kernel.org
|
||||||
|
infrastructure.
|
||||||
|
|
||||||
|
The Linux Foundation's current director of IT Infrastructure security is
|
||||||
|
Konstantin Ryabitsev.
|
||||||
|
|
||||||
|
|
||||||
|
Non-disclosure agreements
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
The Linux kernel hardware security team is not a formal body and therefore
|
||||||
|
unable to enter into any non-disclosure agreements. The kernel community
|
||||||
|
is aware of the sensitive nature of such issues and offers a Memorandum of
|
||||||
|
Understanding instead.
|
||||||
|
|
||||||
|
|
||||||
|
Memorandum of Understanding
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
The Linux kernel community has a deep understanding of the requirement to
|
||||||
|
keep hardware security issues under embargo for coordination between
|
||||||
|
different OS vendors, distributors, hardware vendors and other parties.
|
||||||
|
|
||||||
|
The Linux kernel community has successfully handled hardware security
|
||||||
|
issues in the past and has the necessary mechanisms in place to allow
|
||||||
|
community compliant development under embargo restrictions.
|
||||||
|
|
||||||
|
The Linux kernel community has a dedicated hardware security team for
|
||||||
|
initial contact, which oversees the process of handling such issues under
|
||||||
|
embargo rules.
|
||||||
|
|
||||||
|
The hardware security team identifies the developers (domain experts) who
|
||||||
|
will form the initial response team for a particular issue. The initial
|
||||||
|
response team can bring in further developers (domain experts) to address
|
||||||
|
the issue in the best technical way.
|
||||||
|
|
||||||
|
All involved developers pledge to adhere to the embargo rules and to keep
|
||||||
|
the received information confidential. Violation of the pledge will lead to
|
||||||
|
immediate exclusion from the current issue and removal from all related
|
||||||
|
mailing-lists. In addition, the hardware security team will also exclude
|
||||||
|
the offender from future issues. The impact of this consequence is a highly
|
||||||
|
effective deterrent in our community. In case a violation happens the
|
||||||
|
hardware security team will inform the involved parties immediately. If you
|
||||||
|
or anyone becomes aware of a potential violation, please report it
|
||||||
|
immediately to the Hardware security officers.
|
||||||
|
|
||||||
|
|
||||||
|
Process
|
||||||
|
^^^^^^^
|
||||||
|
|
||||||
|
Due to the globally distributed nature of Linux kernel development,
|
||||||
|
face-to-face meetings are almost impossible to address hardware security
|
||||||
|
issues. Phone conferences are hard to coordinate due to time zones and
|
||||||
|
other factors and should be only used when absolutely necessary. Encrypted
|
||||||
|
email has been proven to be the most effective and secure communication
|
||||||
|
method for these types of issues.
|
||||||
|
|
||||||
|
Start of Disclosure
|
||||||
|
"""""""""""""""""""
|
||||||
|
|
||||||
|
Disclosure starts by contacting the Linux kernel hardware security team by
|
||||||
|
email. This initial contact should contain a description of the problem and
|
||||||
|
a list of any known affected hardware. If your organization builds or
|
||||||
|
distributes the affected hardware, we encourage you to also consider what
|
||||||
|
other hardware could be affected.
|
||||||
|
|
||||||
|
The hardware security team will provide an incident-specific encrypted
|
||||||
|
mailing-list which will be used for initial discussion with the reporter,
|
||||||
|
further disclosure and coordination.
|
||||||
|
|
||||||
|
The hardware security team will provide the disclosing party a list of
|
||||||
|
developers (domain experts) who should be informed initially about the
|
||||||
|
issue after confirming with the developers that they will adhere to this
|
||||||
|
Memorandum of Understanding and the documented process. These developers
|
||||||
|
form the initial response team and will be responsible for handling the
|
||||||
|
issue after initial contact. The hardware security team is supporting the
|
||||||
|
response team, but is not necessarily involved in the mitigation
|
||||||
|
development process.
|
||||||
|
|
||||||
|
While individual developers might be covered by a non-disclosure agreement
|
||||||
|
via their employer, they cannot enter individual non-disclosure agreements
|
||||||
|
in their role as Linux kernel developers. They will, however, agree to
|
||||||
|
adhere to this documented process and the Memorandum of Understanding.
|
||||||
|
|
||||||
|
|
||||||
|
Disclosure
|
||||||
|
""""""""""
|
||||||
|
|
||||||
|
The disclosing party provides detailed information to the initial response
|
||||||
|
team via the specific encrypted mailing-list.
|
||||||
|
|
||||||
|
From our experience the technical documentation of these issues is usually
|
||||||
|
a sufficient starting point and further technical clarification is best
|
||||||
|
done via email.
|
||||||
|
|
||||||
|
Mitigation development
|
||||||
|
""""""""""""""""""""""
|
||||||
|
|
||||||
|
The initial response team sets up an encrypted mailing-list or repurposes
|
||||||
|
an existing one if appropriate. The disclosing party should provide a list
|
||||||
|
of contacts for all other parties who have already been, or should be
|
||||||
|
informed about the issue. The response team contacts these parties so they
|
||||||
|
can name experts who should be subscribed to the mailing-list.
|
||||||
|
|
||||||
|
Using a mailing-list is close to the normal Linux development process and
|
||||||
|
has been successfully used in developing mitigations for various hardware
|
||||||
|
security issues in the past.
|
||||||
|
|
||||||
|
The mailing-list operates in the same way as normal Linux development.
|
||||||
|
Patches are posted, discussed and reviewed and if agreed on applied to a
|
||||||
|
non-public git repository which is only accessible to the participating
|
||||||
|
developers via a secure connection. The repository contains the main
|
||||||
|
development branch against the mainline kernel and backport branches for
|
||||||
|
stable kernel versions as necessary.
|
||||||
|
|
||||||
|
The initial response team will identify further experts from the Linux
|
||||||
|
kernel developer community as needed and inform the disclosing party about
|
||||||
|
their participation. Bringing in experts can happen at any time of the
|
||||||
|
development process and often needs to be handled in a timely manner.
|
||||||
|
|
||||||
|
Coordinated release
|
||||||
|
"""""""""""""""""""
|
||||||
|
|
||||||
|
The involved parties will negotiate the date and time where the embargo
|
||||||
|
ends. At that point the prepared mitigations are integrated into the
|
||||||
|
relevant kernel trees and published.
|
||||||
|
|
||||||
|
While we understand that hardware security issues need coordinated embargo
|
||||||
|
time, the embargo time should be constrained to the minimum time which is
|
||||||
|
required for all involved parties to develop, test and prepare the
|
||||||
|
mitigations. Extending embargo time artificially to meet conference talk
|
||||||
|
dates or other non-technical reasons is creating more work and burden for
|
||||||
|
the involved developers and response teams as the patches need to be kept
|
||||||
|
up to date in order to follow the ongoing upstream kernel development,
|
||||||
|
which might create conflicting changes.
|
||||||
|
|
||||||
|
CVE assignment
|
||||||
|
""""""""""""""
|
||||||
|
|
||||||
|
Neither the hardware security team nor the initial response team assign
|
||||||
|
CVEs, nor are CVEs required for the development process. If CVEs are
|
||||||
|
provided by the disclosing party they can be used for documentation
|
||||||
|
purposes.
|
||||||
|
|
||||||
|
Process ambassadors
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
For assistance with this process we have established ambassadors in various
|
||||||
|
organizations, who can answer questions about or provide guidance on the
|
||||||
|
reporting process and further handling. Ambassadors are not involved in the
|
||||||
|
disclosure of a particular issue, unless requested by a response team or by
|
||||||
|
an involved disclosed party. The current ambassadors list:
|
||||||
|
|
||||||
|
============= ========================================================
|
||||||
|
ARM
|
||||||
|
AMD
|
||||||
|
IBM
|
||||||
|
Intel
|
||||||
|
Qualcomm
|
||||||
|
|
||||||
|
Microsoft
|
||||||
|
VMware
|
||||||
|
XEN
|
||||||
|
|
||||||
|
Canonical Tyler Hicks <tyhicks@canonical.com>
|
||||||
|
Debian Ben Hutchings <ben@decadent.org.uk>
|
||||||
|
Oracle Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
|
||||||
|
Red Hat Josh Poimboeuf <jpoimboe@redhat.com>
|
||||||
|
SUSE Jiri Kosina <jkosina@suse.cz>
|
||||||
|
|
||||||
|
Amazon
|
||||||
|
Google
|
||||||
|
============== ========================================================
|
||||||
|
|
||||||
|
If you want your organization to be added to the ambassadors list, please
|
||||||
|
contact the hardware security team. The nominated ambassador has to
|
||||||
|
understand and support our process fully and is ideally well connected in
|
||||||
|
the Linux kernel community.
|
||||||
|
|
||||||
|
Encrypted mailing-lists
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
We use encrypted mailing-lists for communication. The operating principle
|
||||||
|
of these lists is that email sent to the list is encrypted either with the
|
||||||
|
list's PGP key or with the list's S/MIME certificate. The mailing-list
|
||||||
|
software decrypts the email and re-encrypts it individually for each
|
||||||
|
subscriber with the subscriber's PGP key or S/MIME certificate. Details
|
||||||
|
about the mailing-list software and the setup which is used to ensure the
|
||||||
|
security of the lists and protection of the data can be found here:
|
||||||
|
https://www.kernel.org/....
|
||||||
|
|
||||||
|
List keys
|
||||||
|
^^^^^^^^^
|
||||||
|
|
||||||
|
For initial contact see :ref:`Contact`. For incident specific mailing-lists
|
||||||
|
the key and S/MIME certificate are conveyed to the subscribers by email
|
||||||
|
sent from the specific list.
|
||||||
|
|
||||||
|
Subscription to incident specific lists
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Subscription is handled by the response teams. Disclosed parties who want
|
||||||
|
to participate in the communication send a list of potential subscribers to
|
||||||
|
the response team so the response team can validate subscription requests.
|
||||||
|
|
||||||
|
Each subscriber needs to send a subscription request to the response team
|
||||||
|
by email. The email must be signed with the subscriber's PGP key or S/MIME
|
||||||
|
certificate. If a PGP key is used, it must be available from a public key
|
||||||
|
server and is ideally connected to the Linux kernel's PGP web of trust. See
|
||||||
|
also: https://www.kernel.org/signature.html.
|
||||||
|
|
||||||
|
The response team verifies that the subscriber request is valid and adds
|
||||||
|
the subscriber to the list. After subscription the subscriber will receive
|
||||||
|
email from the mailing-list which is signed either with the list's PGP key
|
||||||
|
or the list's S/MIME certificate. The subscriber's email client can extract
|
||||||
|
the PGP key or the S/MIME certificate from the signature so the subscriber
|
||||||
|
can send encrypted email to the list.
|
||||||
|
|
@ -45,6 +45,7 @@ Other guides to the community that are of interest to most developers are:
|
|||||||
submit-checklist
|
submit-checklist
|
||||||
kernel-docs
|
kernel-docs
|
||||||
deprecated
|
deprecated
|
||||||
|
embargoed-hardware-issues
|
||||||
|
|
||||||
These are some overall technical guides that have been put here for now for
|
These are some overall technical guides that have been put here for now for
|
||||||
lack of a better place.
|
lack of a better place.
|
||||||
|
32
MAINTAINERS
32
MAINTAINERS
@ -683,7 +683,7 @@ S: Maintained
|
|||||||
F: drivers/crypto/sunxi-ss/
|
F: drivers/crypto/sunxi-ss/
|
||||||
|
|
||||||
ALLWINNER VPU DRIVER
|
ALLWINNER VPU DRIVER
|
||||||
M: Maxime Ripard <maxime.ripard@bootlin.com>
|
M: Maxime Ripard <mripard@kernel.org>
|
||||||
M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
|
M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
|
||||||
L: linux-media@vger.kernel.org
|
L: linux-media@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
@ -1408,7 +1408,7 @@ S: Maintained
|
|||||||
F: drivers/clk/sunxi/
|
F: drivers/clk/sunxi/
|
||||||
|
|
||||||
ARM/Allwinner sunXi SoC support
|
ARM/Allwinner sunXi SoC support
|
||||||
M: Maxime Ripard <maxime.ripard@bootlin.com>
|
M: Maxime Ripard <mripard@kernel.org>
|
||||||
M: Chen-Yu Tsai <wens@csie.org>
|
M: Chen-Yu Tsai <wens@csie.org>
|
||||||
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
|
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
|
||||||
S: Maintained
|
S: Maintained
|
||||||
@ -3577,7 +3577,7 @@ F: Documentation/filesystems/caching/cachefiles.txt
|
|||||||
F: fs/cachefiles/
|
F: fs/cachefiles/
|
||||||
|
|
||||||
CADENCE MIPI-CSI2 BRIDGES
|
CADENCE MIPI-CSI2 BRIDGES
|
||||||
M: Maxime Ripard <maxime.ripard@bootlin.com>
|
M: Maxime Ripard <mripard@kernel.org>
|
||||||
L: linux-media@vger.kernel.org
|
L: linux-media@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/media/cdns,*.txt
|
F: Documentation/devicetree/bindings/media/cdns,*.txt
|
||||||
@ -5295,7 +5295,7 @@ F: include/linux/vga*
|
|||||||
|
|
||||||
DRM DRIVERS AND MISC GPU PATCHES
|
DRM DRIVERS AND MISC GPU PATCHES
|
||||||
M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
|
M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
|
||||||
M: Maxime Ripard <maxime.ripard@bootlin.com>
|
M: Maxime Ripard <mripard@kernel.org>
|
||||||
M: Sean Paul <sean@poorly.run>
|
M: Sean Paul <sean@poorly.run>
|
||||||
W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
|
W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
|
||||||
S: Maintained
|
S: Maintained
|
||||||
@ -5308,7 +5308,7 @@ F: include/uapi/drm/drm*
|
|||||||
F: include/linux/vga*
|
F: include/linux/vga*
|
||||||
|
|
||||||
DRM DRIVERS FOR ALLWINNER A10
|
DRM DRIVERS FOR ALLWINNER A10
|
||||||
M: Maxime Ripard <maxime.ripard@bootlin.com>
|
M: Maxime Ripard <mripard@kernel.org>
|
||||||
L: dri-devel@lists.freedesktop.org
|
L: dri-devel@lists.freedesktop.org
|
||||||
S: Supported
|
S: Supported
|
||||||
F: drivers/gpu/drm/sun4i/
|
F: drivers/gpu/drm/sun4i/
|
||||||
@ -7513,7 +7513,7 @@ I2C MV64XXX MARVELL AND ALLWINNER DRIVER
|
|||||||
M: Gregory CLEMENT <gregory.clement@bootlin.com>
|
M: Gregory CLEMENT <gregory.clement@bootlin.com>
|
||||||
L: linux-i2c@vger.kernel.org
|
L: linux-i2c@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/i2c/i2c-mv64xxx.txt
|
F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
|
||||||
F: drivers/i2c/busses/i2c-mv64xxx.c
|
F: drivers/i2c/busses/i2c-mv64xxx.c
|
||||||
|
|
||||||
I2C OVER PARALLEL PORT
|
I2C OVER PARALLEL PORT
|
||||||
@ -8454,11 +8454,6 @@ S: Maintained
|
|||||||
F: fs/io_uring.c
|
F: fs/io_uring.c
|
||||||
F: include/uapi/linux/io_uring.h
|
F: include/uapi/linux/io_uring.h
|
||||||
|
|
||||||
IP MASQUERADING
|
|
||||||
M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
|
|
||||||
S: Maintained
|
|
||||||
F: net/ipv4/netfilter/ipt_MASQUERADE.c
|
|
||||||
|
|
||||||
IPMI SUBSYSTEM
|
IPMI SUBSYSTEM
|
||||||
M: Corey Minyard <minyard@acm.org>
|
M: Corey Minyard <minyard@acm.org>
|
||||||
L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
|
L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
|
||||||
@ -9234,6 +9229,18 @@ F: include/linux/nd.h
|
|||||||
F: include/linux/libnvdimm.h
|
F: include/linux/libnvdimm.h
|
||||||
F: include/uapi/linux/ndctl.h
|
F: include/uapi/linux/ndctl.h
|
||||||
|
|
||||||
|
LICENSES and SPDX stuff
|
||||||
|
M: Thomas Gleixner <tglx@linutronix.de>
|
||||||
|
M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
||||||
|
L: linux-spdx@vger.kernel.org
|
||||||
|
S: Maintained
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
|
||||||
|
F: COPYING
|
||||||
|
F: Documentation/process/license-rules.rst
|
||||||
|
F: LICENSES/
|
||||||
|
F: scripts/spdxcheck-test.sh
|
||||||
|
F: scripts/spdxcheck.py
|
||||||
|
|
||||||
LIGHTNVM PLATFORM SUPPORT
|
LIGHTNVM PLATFORM SUPPORT
|
||||||
M: Matias Bjorling <mb@lightnvm.io>
|
M: Matias Bjorling <mb@lightnvm.io>
|
||||||
W: http://github/OpenChannelSSD
|
W: http://github/OpenChannelSSD
|
||||||
@ -11086,7 +11093,7 @@ NET_FAILOVER MODULE
|
|||||||
M: Sridhar Samudrala <sridhar.samudrala@intel.com>
|
M: Sridhar Samudrala <sridhar.samudrala@intel.com>
|
||||||
L: netdev@vger.kernel.org
|
L: netdev@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
F: driver/net/net_failover.c
|
F: drivers/net/net_failover.c
|
||||||
F: include/net/net_failover.h
|
F: include/net/net_failover.h
|
||||||
F: Documentation/networking/net_failover.rst
|
F: Documentation/networking/net_failover.rst
|
||||||
|
|
||||||
@ -14478,6 +14485,7 @@ F: drivers/net/phy/phylink.c
|
|||||||
F: drivers/net/phy/sfp*
|
F: drivers/net/phy/sfp*
|
||||||
F: include/linux/phylink.h
|
F: include/linux/phylink.h
|
||||||
F: include/linux/sfp.h
|
F: include/linux/sfp.h
|
||||||
|
K: phylink
|
||||||
|
|
||||||
SGI GRU DRIVER
|
SGI GRU DRIVER
|
||||||
M: Dimitri Sivanich <sivanich@sgi.com>
|
M: Dimitri Sivanich <sivanich@sgi.com>
|
||||||
|
2
Makefile
2
Makefile
@ -2,7 +2,7 @@
|
|||||||
VERSION = 5
|
VERSION = 5
|
||||||
PATCHLEVEL = 3
|
PATCHLEVEL = 3
|
||||||
SUBLEVEL = 0
|
SUBLEVEL = 0
|
||||||
EXTRAVERSION = -rc6
|
EXTRAVERSION = -rc7
|
||||||
NAME = Bobtail Squid
|
NAME = Bobtail Squid
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
|
@ -12,3 +12,6 @@ dtb-y := $(builtindtb-y).dtb
|
|||||||
# for CONFIG_OF_ALL_DTBS test
|
# for CONFIG_OF_ALL_DTBS test
|
||||||
dtstree := $(srctree)/$(src)
|
dtstree := $(srctree)/$(src)
|
||||||
dtb- := $(patsubst $(dtstree)/%.dts,%.dtb, $(wildcard $(dtstree)/*.dts))
|
dtb- := $(patsubst $(dtstree)/%.dts,%.dtb, $(wildcard $(dtstree)/*.dts))
|
||||||
|
|
||||||
|
# board-specific dtc flags
|
||||||
|
DTC_FLAGS_hsdk += --pad 20
|
||||||
|
@ -256,7 +256,7 @@
|
|||||||
|
|
||||||
.macro FAKE_RET_FROM_EXCPN
|
.macro FAKE_RET_FROM_EXCPN
|
||||||
lr r9, [status32]
|
lr r9, [status32]
|
||||||
bic r9, r9, (STATUS_U_MASK|STATUS_DE_MASK|STATUS_AE_MASK)
|
bic r9, r9, STATUS_AE_MASK
|
||||||
or r9, r9, STATUS_IE_MASK
|
or r9, r9, STATUS_IE_MASK
|
||||||
kflag r9
|
kflag r9
|
||||||
.endm
|
.endm
|
||||||
|
@ -62,15 +62,15 @@
|
|||||||
#else /* !__ASSEMBLY__ */
|
#else /* !__ASSEMBLY__ */
|
||||||
|
|
||||||
#ifdef CONFIG_ARC_HAS_ICCM
|
#ifdef CONFIG_ARC_HAS_ICCM
|
||||||
#define __arcfp_code __attribute__((__section__(".text.arcfp")))
|
#define __arcfp_code __section(.text.arcfp)
|
||||||
#else
|
#else
|
||||||
#define __arcfp_code __attribute__((__section__(".text")))
|
#define __arcfp_code __section(.text)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_ARC_HAS_DCCM
|
#ifdef CONFIG_ARC_HAS_DCCM
|
||||||
#define __arcfp_data __attribute__((__section__(".data.arcfp")))
|
#define __arcfp_data __section(.data.arcfp)
|
||||||
#else
|
#else
|
||||||
#define __arcfp_data __attribute__((__section__(".data")))
|
#define __arcfp_data __section(.data)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
@ -53,8 +53,7 @@ extern const struct machine_desc __arch_info_begin[], __arch_info_end[];
|
|||||||
*/
|
*/
|
||||||
#define MACHINE_START(_type, _name) \
|
#define MACHINE_START(_type, _name) \
|
||||||
static const struct machine_desc __mach_desc_##_type \
|
static const struct machine_desc __mach_desc_##_type \
|
||||||
__used \
|
__used __section(.arch.info.init) = { \
|
||||||
__attribute__((__section__(".arch.info.init"))) = { \
|
|
||||||
.name = _name,
|
.name = _name,
|
||||||
|
|
||||||
#define MACHINE_END \
|
#define MACHINE_END \
|
||||||
|
@ -202,8 +202,8 @@ static void idu_set_dest(unsigned int cmn_irq, unsigned int cpu_mask)
|
|||||||
__mcip_cmd_data(CMD_IDU_SET_DEST, cmn_irq, cpu_mask);
|
__mcip_cmd_data(CMD_IDU_SET_DEST, cmn_irq, cpu_mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void idu_set_mode(unsigned int cmn_irq, unsigned int lvl,
|
static void idu_set_mode(unsigned int cmn_irq, bool set_lvl, unsigned int lvl,
|
||||||
unsigned int distr)
|
bool set_distr, unsigned int distr)
|
||||||
{
|
{
|
||||||
union {
|
union {
|
||||||
unsigned int word;
|
unsigned int word;
|
||||||
@ -212,7 +212,10 @@ static void idu_set_mode(unsigned int cmn_irq, unsigned int lvl,
|
|||||||
};
|
};
|
||||||
} data;
|
} data;
|
||||||
|
|
||||||
|
data.word = __mcip_cmd_read(CMD_IDU_READ_MODE, cmn_irq);
|
||||||
|
if (set_distr)
|
||||||
data.distr = distr;
|
data.distr = distr;
|
||||||
|
if (set_lvl)
|
||||||
data.lvl = lvl;
|
data.lvl = lvl;
|
||||||
__mcip_cmd_data(CMD_IDU_SET_MODE, cmn_irq, data.word);
|
__mcip_cmd_data(CMD_IDU_SET_MODE, cmn_irq, data.word);
|
||||||
}
|
}
|
||||||
@ -240,6 +243,25 @@ static void idu_irq_unmask(struct irq_data *data)
|
|||||||
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void idu_irq_ack(struct irq_data *data)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
raw_spin_lock_irqsave(&mcip_lock, flags);
|
||||||
|
__mcip_cmd(CMD_IDU_ACK_CIRQ, data->hwirq);
|
||||||
|
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void idu_irq_mask_ack(struct irq_data *data)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
raw_spin_lock_irqsave(&mcip_lock, flags);
|
||||||
|
__mcip_cmd_data(CMD_IDU_SET_MASK, data->hwirq, 1);
|
||||||
|
__mcip_cmd(CMD_IDU_ACK_CIRQ, data->hwirq);
|
||||||
|
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
||||||
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
idu_irq_set_affinity(struct irq_data *data, const struct cpumask *cpumask,
|
idu_irq_set_affinity(struct irq_data *data, const struct cpumask *cpumask,
|
||||||
bool force)
|
bool force)
|
||||||
@ -263,13 +285,36 @@ idu_irq_set_affinity(struct irq_data *data, const struct cpumask *cpumask,
|
|||||||
else
|
else
|
||||||
distribution_mode = IDU_M_DISTRI_RR;
|
distribution_mode = IDU_M_DISTRI_RR;
|
||||||
|
|
||||||
idu_set_mode(data->hwirq, IDU_M_TRIG_LEVEL, distribution_mode);
|
idu_set_mode(data->hwirq, false, 0, true, distribution_mode);
|
||||||
|
|
||||||
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
||||||
|
|
||||||
return IRQ_SET_MASK_OK;
|
return IRQ_SET_MASK_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int idu_irq_set_type(struct irq_data *data, u32 type)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ARCv2 IDU HW does not support inverse polarity, so these are the
|
||||||
|
* only interrupt types supported.
|
||||||
|
*/
|
||||||
|
if (type & ~(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
raw_spin_lock_irqsave(&mcip_lock, flags);
|
||||||
|
|
||||||
|
idu_set_mode(data->hwirq, true,
|
||||||
|
type & IRQ_TYPE_EDGE_RISING ? IDU_M_TRIG_EDGE :
|
||||||
|
IDU_M_TRIG_LEVEL,
|
||||||
|
false, 0);
|
||||||
|
|
||||||
|
raw_spin_unlock_irqrestore(&mcip_lock, flags);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static void idu_irq_enable(struct irq_data *data)
|
static void idu_irq_enable(struct irq_data *data)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
@ -289,7 +334,10 @@ static struct irq_chip idu_irq_chip = {
|
|||||||
.name = "MCIP IDU Intc",
|
.name = "MCIP IDU Intc",
|
||||||
.irq_mask = idu_irq_mask,
|
.irq_mask = idu_irq_mask,
|
||||||
.irq_unmask = idu_irq_unmask,
|
.irq_unmask = idu_irq_unmask,
|
||||||
|
.irq_ack = idu_irq_ack,
|
||||||
|
.irq_mask_ack = idu_irq_mask_ack,
|
||||||
.irq_enable = idu_irq_enable,
|
.irq_enable = idu_irq_enable,
|
||||||
|
.irq_set_type = idu_irq_set_type,
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
.irq_set_affinity = idu_irq_set_affinity,
|
.irq_set_affinity = idu_irq_set_affinity,
|
||||||
#endif
|
#endif
|
||||||
@ -317,7 +365,7 @@ static int idu_irq_map(struct irq_domain *d, unsigned int virq, irq_hw_number_t
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct irq_domain_ops idu_irq_ops = {
|
static const struct irq_domain_ops idu_irq_ops = {
|
||||||
.xlate = irq_domain_xlate_onecell,
|
.xlate = irq_domain_xlate_onetwocell,
|
||||||
.map = idu_irq_map,
|
.map = idu_irq_map,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -572,6 +572,7 @@ static unsigned long read_pointer(const u8 **pLoc, const void *end,
|
|||||||
#else
|
#else
|
||||||
BUILD_BUG_ON(sizeof(u32) != sizeof(value));
|
BUILD_BUG_ON(sizeof(u32) != sizeof(value));
|
||||||
#endif
|
#endif
|
||||||
|
/* Fall through */
|
||||||
case DW_EH_PE_native:
|
case DW_EH_PE_native:
|
||||||
if (end < (const void *)(ptr.pul + 1))
|
if (end < (const void *)(ptr.pul + 1))
|
||||||
return 0;
|
return 0;
|
||||||
@ -826,7 +827,7 @@ static int processCFI(const u8 *start, const u8 *end, unsigned long targetLoc,
|
|||||||
case DW_CFA_def_cfa:
|
case DW_CFA_def_cfa:
|
||||||
state->cfa.reg = get_uleb128(&ptr.p8, end);
|
state->cfa.reg = get_uleb128(&ptr.p8, end);
|
||||||
unw_debug("cfa_def_cfa: r%lu ", state->cfa.reg);
|
unw_debug("cfa_def_cfa: r%lu ", state->cfa.reg);
|
||||||
/*nobreak*/
|
/* fall through */
|
||||||
case DW_CFA_def_cfa_offset:
|
case DW_CFA_def_cfa_offset:
|
||||||
state->cfa.offs = get_uleb128(&ptr.p8, end);
|
state->cfa.offs = get_uleb128(&ptr.p8, end);
|
||||||
unw_debug("cfa_def_cfa_offset: 0x%lx ",
|
unw_debug("cfa_def_cfa_offset: 0x%lx ",
|
||||||
@ -834,7 +835,7 @@ static int processCFI(const u8 *start, const u8 *end, unsigned long targetLoc,
|
|||||||
break;
|
break;
|
||||||
case DW_CFA_def_cfa_sf:
|
case DW_CFA_def_cfa_sf:
|
||||||
state->cfa.reg = get_uleb128(&ptr.p8, end);
|
state->cfa.reg = get_uleb128(&ptr.p8, end);
|
||||||
/*nobreak */
|
/* fall through */
|
||||||
case DW_CFA_def_cfa_offset_sf:
|
case DW_CFA_def_cfa_offset_sf:
|
||||||
state->cfa.offs = get_sleb128(&ptr.p8, end)
|
state->cfa.offs = get_sleb128(&ptr.p8, end)
|
||||||
* state->dataAlign;
|
* state->dataAlign;
|
||||||
|
@ -101,7 +101,7 @@ void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
|
|||||||
if (is_isa_arcv2() && ioc_enable && coherent)
|
if (is_isa_arcv2() && ioc_enable && coherent)
|
||||||
dev->dma_coherent = true;
|
dev->dma_coherent = true;
|
||||||
|
|
||||||
dev_info(dev, "use %sncoherent DMA ops\n",
|
dev_info(dev, "use %scoherent DMA ops\n",
|
||||||
dev->dma_coherent ? "" : "non");
|
dev->dma_coherent ? "" : "non");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,11 +6,15 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
|
#include <linux/of_fdt.h>
|
||||||
|
#include <linux/libfdt.h>
|
||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
#include <asm/arcregs.h>
|
#include <asm/arcregs.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/mach_desc.h>
|
#include <asm/mach_desc.h>
|
||||||
|
|
||||||
|
int arc_hsdk_axi_dmac_coherent __section(.data) = 0;
|
||||||
|
|
||||||
#define ARC_CCM_UNUSED_ADDR 0x60000000
|
#define ARC_CCM_UNUSED_ADDR 0x60000000
|
||||||
|
|
||||||
static void __init hsdk_init_per_cpu(unsigned int cpu)
|
static void __init hsdk_init_per_cpu(unsigned int cpu)
|
||||||
@ -97,6 +101,42 @@ static void __init hsdk_enable_gpio_intc_wire(void)
|
|||||||
iowrite32(GPIO_INT_CONNECTED_MASK, (void __iomem *) GPIO_INTEN);
|
iowrite32(GPIO_INT_CONNECTED_MASK, (void __iomem *) GPIO_INTEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int __init hsdk_tweak_node_coherency(const char *path, bool coherent)
|
||||||
|
{
|
||||||
|
void *fdt = initial_boot_params;
|
||||||
|
const void *prop;
|
||||||
|
int node, ret;
|
||||||
|
bool dt_coh_set;
|
||||||
|
|
||||||
|
node = fdt_path_offset(fdt, path);
|
||||||
|
if (node < 0)
|
||||||
|
goto tweak_fail;
|
||||||
|
|
||||||
|
prop = fdt_getprop(fdt, node, "dma-coherent", &ret);
|
||||||
|
if (!prop && ret != -FDT_ERR_NOTFOUND)
|
||||||
|
goto tweak_fail;
|
||||||
|
|
||||||
|
dt_coh_set = ret != -FDT_ERR_NOTFOUND;
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
/* need to remove "dma-coherent" property */
|
||||||
|
if (dt_coh_set && !coherent)
|
||||||
|
ret = fdt_delprop(fdt, node, "dma-coherent");
|
||||||
|
|
||||||
|
/* need to set "dma-coherent" property */
|
||||||
|
if (!dt_coh_set && coherent)
|
||||||
|
ret = fdt_setprop(fdt, node, "dma-coherent", NULL, 0);
|
||||||
|
|
||||||
|
if (ret < 0)
|
||||||
|
goto tweak_fail;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
tweak_fail:
|
||||||
|
pr_err("failed to tweak %s to %scoherent\n", path, coherent ? "" : "non");
|
||||||
|
return -EFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
enum hsdk_axi_masters {
|
enum hsdk_axi_masters {
|
||||||
M_HS_CORE = 0,
|
M_HS_CORE = 0,
|
||||||
M_HS_RTT,
|
M_HS_RTT,
|
||||||
@ -162,6 +202,39 @@ enum hsdk_axi_masters {
|
|||||||
#define CREG_PAE ((void __iomem *)(CREG_BASE + 0x180))
|
#define CREG_PAE ((void __iomem *)(CREG_BASE + 0x180))
|
||||||
#define CREG_PAE_UPDT ((void __iomem *)(CREG_BASE + 0x194))
|
#define CREG_PAE_UPDT ((void __iomem *)(CREG_BASE + 0x194))
|
||||||
|
|
||||||
|
static void __init hsdk_init_memory_bridge_axi_dmac(void)
|
||||||
|
{
|
||||||
|
bool coherent = !!arc_hsdk_axi_dmac_coherent;
|
||||||
|
u32 axi_m_slv1, axi_m_oft1;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Don't tweak memory bridge configuration if we failed to tweak DTB
|
||||||
|
* as we will end up in a inconsistent state.
|
||||||
|
*/
|
||||||
|
if (hsdk_tweak_node_coherency("/soc/dmac@80000", coherent))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (coherent) {
|
||||||
|
axi_m_slv1 = 0x77999999;
|
||||||
|
axi_m_oft1 = 0x76DCBA98;
|
||||||
|
} else {
|
||||||
|
axi_m_slv1 = 0x77777777;
|
||||||
|
axi_m_oft1 = 0x76543210;
|
||||||
|
}
|
||||||
|
|
||||||
|
writel(0x77777777, CREG_AXI_M_SLV0(M_DMAC_0));
|
||||||
|
writel(0xFEDCBA98, CREG_AXI_M_OFT0(M_DMAC_0));
|
||||||
|
writel(axi_m_slv1, CREG_AXI_M_SLV1(M_DMAC_0));
|
||||||
|
writel(axi_m_oft1, CREG_AXI_M_OFT1(M_DMAC_0));
|
||||||
|
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_DMAC_0));
|
||||||
|
|
||||||
|
writel(0x77777777, CREG_AXI_M_SLV0(M_DMAC_1));
|
||||||
|
writel(0xFEDCBA98, CREG_AXI_M_OFT0(M_DMAC_1));
|
||||||
|
writel(axi_m_slv1, CREG_AXI_M_SLV1(M_DMAC_1));
|
||||||
|
writel(axi_m_oft1, CREG_AXI_M_OFT1(M_DMAC_1));
|
||||||
|
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_DMAC_1));
|
||||||
|
}
|
||||||
|
|
||||||
static void __init hsdk_init_memory_bridge(void)
|
static void __init hsdk_init_memory_bridge(void)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
@ -227,24 +300,14 @@ static void __init hsdk_init_memory_bridge(void)
|
|||||||
writel(0x76543210, CREG_AXI_M_OFT1(M_GPU));
|
writel(0x76543210, CREG_AXI_M_OFT1(M_GPU));
|
||||||
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_GPU));
|
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_GPU));
|
||||||
|
|
||||||
writel(0x77777777, CREG_AXI_M_SLV0(M_DMAC_0));
|
|
||||||
writel(0x77777777, CREG_AXI_M_SLV1(M_DMAC_0));
|
|
||||||
writel(0xFEDCBA98, CREG_AXI_M_OFT0(M_DMAC_0));
|
|
||||||
writel(0x76543210, CREG_AXI_M_OFT1(M_DMAC_0));
|
|
||||||
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_DMAC_0));
|
|
||||||
|
|
||||||
writel(0x77777777, CREG_AXI_M_SLV0(M_DMAC_1));
|
|
||||||
writel(0x77777777, CREG_AXI_M_SLV1(M_DMAC_1));
|
|
||||||
writel(0xFEDCBA98, CREG_AXI_M_OFT0(M_DMAC_1));
|
|
||||||
writel(0x76543210, CREG_AXI_M_OFT1(M_DMAC_1));
|
|
||||||
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_DMAC_1));
|
|
||||||
|
|
||||||
writel(0x00000000, CREG_AXI_M_SLV0(M_DVFS));
|
writel(0x00000000, CREG_AXI_M_SLV0(M_DVFS));
|
||||||
writel(0x60000000, CREG_AXI_M_SLV1(M_DVFS));
|
writel(0x60000000, CREG_AXI_M_SLV1(M_DVFS));
|
||||||
writel(0x00000000, CREG_AXI_M_OFT0(M_DVFS));
|
writel(0x00000000, CREG_AXI_M_OFT0(M_DVFS));
|
||||||
writel(0x00000000, CREG_AXI_M_OFT1(M_DVFS));
|
writel(0x00000000, CREG_AXI_M_OFT1(M_DVFS));
|
||||||
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_DVFS));
|
writel(UPDATE_VAL, CREG_AXI_M_UPDT(M_DVFS));
|
||||||
|
|
||||||
|
hsdk_init_memory_bridge_axi_dmac();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PAE remapping for DMA clients does not work due to an RTL bug, so
|
* PAE remapping for DMA clients does not work due to an RTL bug, so
|
||||||
* CREG_PAE register must be programmed to all zeroes, otherwise it
|
* CREG_PAE register must be programmed to all zeroes, otherwise it
|
||||||
|
@ -185,7 +185,7 @@ SYSC_OMAP2_SOFTRESET |
|
|||||||
uart0: serial@0 {
|
uart0: serial@0 {
|
||||||
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x0 0x2000>;
|
reg = <0x0 0x1000>;
|
||||||
interrupts = <72>;
|
interrupts = <72>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
dmas = <&edma 26 0>, <&edma 27 0>;
|
dmas = <&edma 26 0>, <&edma 27 0>;
|
||||||
@ -934,7 +934,7 @@ SYSC_OMAP2_SOFTRESET |
|
|||||||
uart1: serial@0 {
|
uart1: serial@0 {
|
||||||
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x0 0x2000>;
|
reg = <0x0 0x1000>;
|
||||||
interrupts = <73>;
|
interrupts = <73>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
dmas = <&edma 28 0>, <&edma 29 0>;
|
dmas = <&edma 28 0>, <&edma 29 0>;
|
||||||
@ -966,7 +966,7 @@ SYSC_OMAP2_SOFTRESET |
|
|||||||
uart2: serial@0 {
|
uart2: serial@0 {
|
||||||
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x0 0x2000>;
|
reg = <0x0 0x1000>;
|
||||||
interrupts = <74>;
|
interrupts = <74>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
dmas = <&edma 30 0>, <&edma 31 0>;
|
dmas = <&edma 30 0>, <&edma 31 0>;
|
||||||
@ -1614,7 +1614,7 @@ SYSC_OMAP2_SOFTRESET |
|
|||||||
uart3: serial@0 {
|
uart3: serial@0 {
|
||||||
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x0 0x2000>;
|
reg = <0x0 0x1000>;
|
||||||
interrupts = <44>;
|
interrupts = <44>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
@ -1644,7 +1644,7 @@ SYSC_OMAP2_SOFTRESET |
|
|||||||
uart4: serial@0 {
|
uart4: serial@0 {
|
||||||
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x0 0x2000>;
|
reg = <0x0 0x1000>;
|
||||||
interrupts = <45>;
|
interrupts = <45>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
@ -1674,7 +1674,7 @@ SYSC_OMAP2_SOFTRESET |
|
|||||||
uart5: serial@0 {
|
uart5: serial@0 {
|
||||||
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
compatible = "ti,am3352-uart", "ti,omap3-uart";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x0 0x2000>;
|
reg = <0x0 0x1000>;
|
||||||
interrupts = <46>;
|
interrupts = <46>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
@ -1758,6 +1758,8 @@ target-module@b0000 { /* 0x481b0000, ap 58 50.0 */
|
|||||||
|
|
||||||
target-module@cc000 { /* 0x481cc000, ap 60 46.0 */
|
target-module@cc000 { /* 0x481cc000, ap 60 46.0 */
|
||||||
compatible = "ti,sysc-omap4", "ti,sysc";
|
compatible = "ti,sysc-omap4", "ti,sysc";
|
||||||
|
reg = <0xcc020 0x4>;
|
||||||
|
reg-names = "rev";
|
||||||
ti,hwmods = "d_can0";
|
ti,hwmods = "d_can0";
|
||||||
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
||||||
clocks = <&l4ls_clkctrl AM3_L4LS_D_CAN0_CLKCTRL 0>,
|
clocks = <&l4ls_clkctrl AM3_L4LS_D_CAN0_CLKCTRL 0>,
|
||||||
@ -1780,6 +1782,8 @@ dcan0: can@0 {
|
|||||||
|
|
||||||
target-module@d0000 { /* 0x481d0000, ap 62 42.0 */
|
target-module@d0000 { /* 0x481d0000, ap 62 42.0 */
|
||||||
compatible = "ti,sysc-omap4", "ti,sysc";
|
compatible = "ti,sysc-omap4", "ti,sysc";
|
||||||
|
reg = <0xd0020 0x4>;
|
||||||
|
reg-names = "rev";
|
||||||
ti,hwmods = "d_can1";
|
ti,hwmods = "d_can1";
|
||||||
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
||||||
clocks = <&l4ls_clkctrl AM3_L4LS_D_CAN1_CLKCTRL 0>,
|
clocks = <&l4ls_clkctrl AM3_L4LS_D_CAN1_CLKCTRL 0>,
|
||||||
|
@ -234,13 +234,33 @@ edma_tptc2: tptc@49a00000 {
|
|||||||
interrupt-names = "edma3_tcerrint";
|
interrupt-names = "edma3_tcerrint";
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc3: mmc@47810000 {
|
target-module@47810000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,sysc-omap2", "ti,sysc";
|
||||||
ti,hwmods = "mmc3";
|
ti,hwmods = "mmc3";
|
||||||
|
reg = <0x478102fc 0x4>,
|
||||||
|
<0x47810110 0x4>,
|
||||||
|
<0x47810114 0x4>;
|
||||||
|
reg-names = "rev", "sysc", "syss";
|
||||||
|
ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
|
||||||
|
SYSC_OMAP2_ENAWAKEUP |
|
||||||
|
SYSC_OMAP2_SOFTRESET |
|
||||||
|
SYSC_OMAP2_AUTOIDLE)>;
|
||||||
|
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
|
||||||
|
<SYSC_IDLE_NO>,
|
||||||
|
<SYSC_IDLE_SMART>;
|
||||||
|
ti,syss-mask = <1>;
|
||||||
|
clocks = <&l3s_clkctrl AM3_L3S_MMC3_CLKCTRL 0>;
|
||||||
|
clock-names = "fck";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
ranges = <0x0 0x47810000 0x1000>;
|
||||||
|
|
||||||
|
mmc3: mmc@0 {
|
||||||
|
compatible = "ti,omap4-hsmmc";
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
interrupts = <29>;
|
interrupts = <29>;
|
||||||
reg = <0x47810000 0x1000>;
|
reg = <0x0 0x1000>;
|
||||||
status = "disabled";
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
usb: usb@47400000 {
|
usb: usb@47400000 {
|
||||||
|
@ -228,13 +228,33 @@ edma_tptc2: tptc@49a00000 {
|
|||||||
interrupt-names = "edma3_tcerrint";
|
interrupt-names = "edma3_tcerrint";
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc3: mmc@47810000 {
|
target-module@47810000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,sysc-omap2", "ti,sysc";
|
||||||
reg = <0x47810000 0x1000>;
|
|
||||||
ti,hwmods = "mmc3";
|
ti,hwmods = "mmc3";
|
||||||
|
reg = <0x478102fc 0x4>,
|
||||||
|
<0x47810110 0x4>,
|
||||||
|
<0x47810114 0x4>;
|
||||||
|
reg-names = "rev", "sysc", "syss";
|
||||||
|
ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
|
||||||
|
SYSC_OMAP2_ENAWAKEUP |
|
||||||
|
SYSC_OMAP2_SOFTRESET |
|
||||||
|
SYSC_OMAP2_AUTOIDLE)>;
|
||||||
|
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
|
||||||
|
<SYSC_IDLE_NO>,
|
||||||
|
<SYSC_IDLE_SMART>;
|
||||||
|
ti,syss-mask = <1>;
|
||||||
|
clocks = <&l3s_clkctrl AM4_L3S_MMC3_CLKCTRL 0>;
|
||||||
|
clock-names = "fck";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
ranges = <0x0 0x47810000 0x1000>;
|
||||||
|
|
||||||
|
mmc3: mmc@0 {
|
||||||
|
compatible = "ti,omap4-hsmmc";
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
status = "disabled";
|
reg = <0x0 0x1000>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sham: sham@53100000 {
|
sham: sham@53100000 {
|
||||||
|
@ -1574,6 +1574,8 @@ timer8: timer@0 {
|
|||||||
|
|
||||||
target-module@cc000 { /* 0x481cc000, ap 50 46.0 */
|
target-module@cc000 { /* 0x481cc000, ap 50 46.0 */
|
||||||
compatible = "ti,sysc-omap4", "ti,sysc";
|
compatible = "ti,sysc-omap4", "ti,sysc";
|
||||||
|
reg = <0xcc020 0x4>;
|
||||||
|
reg-names = "rev";
|
||||||
ti,hwmods = "d_can0";
|
ti,hwmods = "d_can0";
|
||||||
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
||||||
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN0_CLKCTRL 0>;
|
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN0_CLKCTRL 0>;
|
||||||
@ -1593,6 +1595,8 @@ dcan0: can@0 {
|
|||||||
|
|
||||||
target-module@d0000 { /* 0x481d0000, ap 52 3a.0 */
|
target-module@d0000 { /* 0x481d0000, ap 52 3a.0 */
|
||||||
compatible = "ti,sysc-omap4", "ti,sysc";
|
compatible = "ti,sysc-omap4", "ti,sysc";
|
||||||
|
reg = <0xd0020 0x4>;
|
||||||
|
reg-names = "rev";
|
||||||
ti,hwmods = "d_can1";
|
ti,hwmods = "d_can1";
|
||||||
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
|
||||||
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN1_CLKCTRL 0>;
|
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN1_CLKCTRL 0>;
|
||||||
|
@ -175,14 +175,9 @@ &pcie1_ep {
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mmc1 {
|
&mmc1 {
|
||||||
pinctrl-names = "default", "hs", "sdr12", "sdr25", "sdr50", "ddr50", "sdr104";
|
pinctrl-names = "default", "hs";
|
||||||
pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
|
pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
|
||||||
pinctrl-1 = <&mmc1_pins_hs>;
|
pinctrl-1 = <&mmc1_pins_hs>;
|
||||||
pinctrl-2 = <&mmc1_pins_sdr12>;
|
|
||||||
pinctrl-3 = <&mmc1_pins_sdr25>;
|
|
||||||
pinctrl-4 = <&mmc1_pins_sdr50>;
|
|
||||||
pinctrl-5 = <&mmc1_pins_ddr50_rev20 &mmc1_iodelay_ddr50_conf>;
|
|
||||||
pinctrl-6 = <&mmc1_pins_sdr104 &mmc1_iodelay_sdr104_rev20_conf>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
&mmc2 {
|
&mmc2 {
|
||||||
|
@ -16,14 +16,9 @@ / {
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mmc1 {
|
&mmc1 {
|
||||||
pinctrl-names = "default", "hs", "sdr12", "sdr25", "sdr50", "ddr50", "sdr104";
|
pinctrl-names = "default", "hs";
|
||||||
pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
|
pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
|
||||||
pinctrl-1 = <&mmc1_pins_hs>;
|
pinctrl-1 = <&mmc1_pins_hs>;
|
||||||
pinctrl-2 = <&mmc1_pins_sdr12>;
|
|
||||||
pinctrl-3 = <&mmc1_pins_sdr25>;
|
|
||||||
pinctrl-4 = <&mmc1_pins_sdr50>;
|
|
||||||
pinctrl-5 = <&mmc1_pins_ddr50 &mmc1_iodelay_ddr_rev20_conf>;
|
|
||||||
pinctrl-6 = <&mmc1_pins_sdr104 &mmc1_iodelay_sdr104_rev20_conf>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
&mmc2 {
|
&mmc2 {
|
||||||
|
@ -24,14 +24,9 @@ m25p80@0 {
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mmc1 {
|
&mmc1 {
|
||||||
pinctrl-names = "default", "hs", "sdr12", "sdr25", "sdr50", "ddr50", "sdr104";
|
pinctrl-names = "default", "hs";
|
||||||
pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
|
pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
|
||||||
pinctrl-1 = <&mmc1_pins_hs>;
|
pinctrl-1 = <&mmc1_pins_hs>;
|
||||||
pinctrl-2 = <&mmc1_pins_default>;
|
|
||||||
pinctrl-3 = <&mmc1_pins_hs>;
|
|
||||||
pinctrl-4 = <&mmc1_pins_sdr50>;
|
|
||||||
pinctrl-5 = <&mmc1_pins_ddr50 &mmc1_iodelay_ddr_conf>;
|
|
||||||
pinctrl-6 = <&mmc1_pins_ddr50 &mmc1_iodelay_sdr104_conf>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
&mmc2 {
|
&mmc2 {
|
||||||
|
@ -379,7 +379,7 @@ mcp_rtc: rtc@6f {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&gpio7 {
|
&gpio7_target {
|
||||||
ti,no-reset-on-init;
|
ti,no-reset-on-init;
|
||||||
ti,no-idle-on-init;
|
ti,no-idle-on-init;
|
||||||
};
|
};
|
||||||
@ -430,6 +430,7 @@ &mmc1 {
|
|||||||
|
|
||||||
bus-width = <4>;
|
bus-width = <4>;
|
||||||
cd-gpios = <&gpio6 27 GPIO_ACTIVE_LOW>; /* gpio 219 */
|
cd-gpios = <&gpio6 27 GPIO_ACTIVE_LOW>; /* gpio 219 */
|
||||||
|
no-1-8-v;
|
||||||
};
|
};
|
||||||
|
|
||||||
&mmc2 {
|
&mmc2 {
|
||||||
|
@ -16,14 +16,9 @@ &tpd12s015 {
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mmc1 {
|
&mmc1 {
|
||||||
pinctrl-names = "default", "hs", "sdr12", "sdr25", "sdr50", "ddr50", "sdr104";
|
pinctrl-names = "default", "hs";
|
||||||
pinctrl-0 = <&mmc1_pins_default>;
|
pinctrl-0 = <&mmc1_pins_default>;
|
||||||
pinctrl-1 = <&mmc1_pins_hs>;
|
pinctrl-1 = <&mmc1_pins_hs>;
|
||||||
pinctrl-2 = <&mmc1_pins_sdr12>;
|
|
||||||
pinctrl-3 = <&mmc1_pins_sdr25>;
|
|
||||||
pinctrl-4 = <&mmc1_pins_sdr50>;
|
|
||||||
pinctrl-5 = <&mmc1_pins_ddr50 &mmc1_iodelay_ddr_rev11_conf>;
|
|
||||||
pinctrl-6 = <&mmc1_pins_sdr104 &mmc1_iodelay_sdr104_rev11_conf>;
|
|
||||||
vmmc-supply = <&vdd_3v3>;
|
vmmc-supply = <&vdd_3v3>;
|
||||||
vqmmc-supply = <&ldo1_reg>;
|
vqmmc-supply = <&ldo1_reg>;
|
||||||
};
|
};
|
||||||
|
@ -16,14 +16,9 @@ &tpd12s015 {
|
|||||||
};
|
};
|
||||||
|
|
||||||
&mmc1 {
|
&mmc1 {
|
||||||
pinctrl-names = "default", "hs", "sdr12", "sdr25", "sdr50", "ddr50", "sdr104";
|
pinctrl-names = "default", "hs";
|
||||||
pinctrl-0 = <&mmc1_pins_default>;
|
pinctrl-0 = <&mmc1_pins_default>;
|
||||||
pinctrl-1 = <&mmc1_pins_hs>;
|
pinctrl-1 = <&mmc1_pins_hs>;
|
||||||
pinctrl-2 = <&mmc1_pins_sdr12>;
|
|
||||||
pinctrl-3 = <&mmc1_pins_sdr25>;
|
|
||||||
pinctrl-4 = <&mmc1_pins_sdr50>;
|
|
||||||
pinctrl-5 = <&mmc1_pins_ddr50 &mmc1_iodelay_ddr_rev20_conf>;
|
|
||||||
pinctrl-6 = <&mmc1_pins_sdr104 &mmc1_iodelay_sdr104_rev20_conf>;
|
|
||||||
vmmc-supply = <&vdd_3v3>;
|
vmmc-supply = <&vdd_3v3>;
|
||||||
vqmmc-supply = <&ldo1_reg>;
|
vqmmc-supply = <&ldo1_reg>;
|
||||||
};
|
};
|
||||||
|
@ -498,7 +498,7 @@ &usb2_phy2 {
|
|||||||
phy-supply = <&ldousb_reg>;
|
phy-supply = <&ldousb_reg>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&gpio7 {
|
&gpio7_target {
|
||||||
ti,no-reset-on-init;
|
ti,no-reset-on-init;
|
||||||
ti,no-idle-on-init;
|
ti,no-idle-on-init;
|
||||||
};
|
};
|
||||||
|
@ -1261,7 +1261,7 @@ timer9: timer@0 {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
target-module@51000 { /* 0x48051000, ap 45 2e.0 */
|
gpio7_target: target-module@51000 { /* 0x48051000, ap 45 2e.0 */
|
||||||
compatible = "ti,sysc-omap2", "ti,sysc";
|
compatible = "ti,sysc-omap2", "ti,sysc";
|
||||||
ti,hwmods = "gpio7";
|
ti,hwmods = "gpio7";
|
||||||
reg = <0x51000 0x4>,
|
reg = <0x51000 0x4>,
|
||||||
@ -3025,7 +3025,7 @@ mcasp8: mcasp@0 {
|
|||||||
|
|
||||||
target-module@80000 { /* 0x48480000, ap 31 16.0 */
|
target-module@80000 { /* 0x48480000, ap 31 16.0 */
|
||||||
compatible = "ti,sysc-omap4", "ti,sysc";
|
compatible = "ti,sysc-omap4", "ti,sysc";
|
||||||
reg = <0x80000 0x4>;
|
reg = <0x80020 0x4>;
|
||||||
reg-names = "rev";
|
reg-names = "rev";
|
||||||
clocks = <&l4per2_clkctrl DRA7_L4PER2_DCAN2_CLKCTRL 0>;
|
clocks = <&l4per2_clkctrl DRA7_L4PER2_DCAN2_CLKCTRL 0>;
|
||||||
clock-names = "fck";
|
clock-names = "fck";
|
||||||
@ -4577,7 +4577,7 @@ target-module@9000 { /* 0x4ae39000, ap 42 70.0 */
|
|||||||
|
|
||||||
target-module@c000 { /* 0x4ae3c000, ap 30 04.0 */
|
target-module@c000 { /* 0x4ae3c000, ap 30 04.0 */
|
||||||
compatible = "ti,sysc-omap4", "ti,sysc";
|
compatible = "ti,sysc-omap4", "ti,sysc";
|
||||||
reg = <0xc000 0x4>;
|
reg = <0xc020 0x4>;
|
||||||
reg-names = "rev";
|
reg-names = "rev";
|
||||||
clocks = <&wkupaon_clkctrl DRA7_WKUPAON_DCAN1_CLKCTRL 0>;
|
clocks = <&wkupaon_clkctrl DRA7_WKUPAON_DCAN1_CLKCTRL 0>;
|
||||||
clock-names = "fck";
|
clock-names = "fck";
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
*
|
*
|
||||||
* Datamanual Revisions:
|
* Datamanual Revisions:
|
||||||
*
|
*
|
||||||
* AM572x Silicon Revision 2.0: SPRS953B, Revised November 2016
|
* AM572x Silicon Revision 2.0: SPRS953F, Revised May 2019
|
||||||
* AM572x Silicon Revision 1.1: SPRS915R, Revised November 2016
|
* AM572x Silicon Revision 1.1: SPRS915R, Revised November 2016
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -229,45 +229,45 @@ DRA7XX_CORE_IOPAD(0x37fc, PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE3) /* uart2_r
|
|||||||
|
|
||||||
mmc3_pins_default: mmc3_pins_default {
|
mmc3_pins_default: mmc3_pins_default {
|
||||||
pinctrl-single,pins = <
|
pinctrl-single,pins = <
|
||||||
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
||||||
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
||||||
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
||||||
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
||||||
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
||||||
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc3_pins_hs: mmc3_pins_hs {
|
mmc3_pins_hs: mmc3_pins_hs {
|
||||||
pinctrl-single,pins = <
|
pinctrl-single,pins = <
|
||||||
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
||||||
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
||||||
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
||||||
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
||||||
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
||||||
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc3_pins_sdr12: mmc3_pins_sdr12 {
|
mmc3_pins_sdr12: mmc3_pins_sdr12 {
|
||||||
pinctrl-single,pins = <
|
pinctrl-single,pins = <
|
||||||
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
||||||
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
||||||
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
||||||
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
||||||
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
||||||
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc3_pins_sdr25: mmc3_pins_sdr25 {
|
mmc3_pins_sdr25: mmc3_pins_sdr25 {
|
||||||
pinctrl-single,pins = <
|
pinctrl-single,pins = <
|
||||||
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
DRA7XX_CORE_IOPAD(0x377c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_clk.mmc3_clk */
|
||||||
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
DRA7XX_CORE_IOPAD(0x3780, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_cmd.mmc3_cmd */
|
||||||
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
DRA7XX_CORE_IOPAD(0x3784, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat0.mmc3_dat0 */
|
||||||
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
DRA7XX_CORE_IOPAD(0x3788, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat1.mmc3_dat1 */
|
||||||
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
DRA7XX_CORE_IOPAD(0x378c, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat2.mmc3_dat2 */
|
||||||
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
DRA7XX_CORE_IOPAD(0x3790, (PIN_INPUT_PULLUP | MODE_SELECT | MUX_MODE0)) /* mmc3_dat3.mmc3_dat3 */
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -246,13 +246,13 @@ n25q128a13_4: flash@0 {
|
|||||||
reg = <0>;
|
reg = <0>;
|
||||||
};
|
};
|
||||||
|
|
||||||
n25q128a13_2: flash@1 {
|
n25q128a13_2: flash@2 {
|
||||||
compatible = "n25q128a13", "jedec,spi-nor";
|
compatible = "n25q128a13", "jedec,spi-nor";
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
spi-max-frequency = <66000000>;
|
spi-max-frequency = <66000000>;
|
||||||
spi-rx-bus-width = <2>;
|
spi-rx-bus-width = <2>;
|
||||||
reg = <1>;
|
reg = <2>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ for_each_frame: tst frame, mask @ Check for address exceptions
|
|||||||
|
|
||||||
1003: ldr r2, [sv_pc, #-4] @ if stmfd sp!, {args} exists,
|
1003: ldr r2, [sv_pc, #-4] @ if stmfd sp!, {args} exists,
|
||||||
ldr r3, .Ldsi+4 @ adjust saved 'pc' back one
|
ldr r3, .Ldsi+4 @ adjust saved 'pc' back one
|
||||||
teq r3, r2, lsr #10 @ instruction
|
teq r3, r2, lsr #11 @ instruction
|
||||||
subne r0, sv_pc, #4 @ allow for mov
|
subne r0, sv_pc, #4 @ allow for mov
|
||||||
subeq r0, sv_pc, #8 @ allow for mov + stmia
|
subeq r0, sv_pc, #8 @ allow for mov + stmia
|
||||||
|
|
||||||
|
@ -126,6 +126,8 @@ restart:
|
|||||||
orr r11, r11, r13 @ mask all requested interrupts
|
orr r11, r11, r13 @ mask all requested interrupts
|
||||||
str r11, [r12, #OMAP1510_GPIO_INT_MASK]
|
str r11, [r12, #OMAP1510_GPIO_INT_MASK]
|
||||||
|
|
||||||
|
str r13, [r12, #OMAP1510_GPIO_INT_STATUS] @ ack all requested interrupts
|
||||||
|
|
||||||
ands r10, r13, #KEYBRD_CLK_MASK @ extract keyboard status - set?
|
ands r10, r13, #KEYBRD_CLK_MASK @ extract keyboard status - set?
|
||||||
beq hksw @ no - try next source
|
beq hksw @ no - try next source
|
||||||
|
|
||||||
@ -133,7 +135,6 @@ restart:
|
|||||||
@@@@@@@@@@@@@@@@@@@@@@
|
@@@@@@@@@@@@@@@@@@@@@@
|
||||||
@ Keyboard clock FIQ mode interrupt handler
|
@ Keyboard clock FIQ mode interrupt handler
|
||||||
@ r10 now contains KEYBRD_CLK_MASK, use it
|
@ r10 now contains KEYBRD_CLK_MASK, use it
|
||||||
str r10, [r12, #OMAP1510_GPIO_INT_STATUS] @ ack the interrupt
|
|
||||||
bic r11, r11, r10 @ unmask it
|
bic r11, r11, r10 @ unmask it
|
||||||
str r11, [r12, #OMAP1510_GPIO_INT_MASK]
|
str r11, [r12, #OMAP1510_GPIO_INT_MASK]
|
||||||
|
|
||||||
|
@ -70,9 +70,7 @@ static irqreturn_t deferred_fiq(int irq, void *dev_id)
|
|||||||
* interrupts default to since commit 80ac93c27441
|
* interrupts default to since commit 80ac93c27441
|
||||||
* requires interrupt already acked and unmasked.
|
* requires interrupt already acked and unmasked.
|
||||||
*/
|
*/
|
||||||
if (irq_chip->irq_ack)
|
if (!WARN_ON_ONCE(!irq_chip->irq_unmask))
|
||||||
irq_chip->irq_ack(d);
|
|
||||||
if (irq_chip->irq_unmask)
|
|
||||||
irq_chip->irq_unmask(d);
|
irq_chip->irq_unmask(d);
|
||||||
}
|
}
|
||||||
for (; irq_counter[gpio] < fiq_count; irq_counter[gpio]++)
|
for (; irq_counter[gpio] < fiq_count; irq_counter[gpio]++)
|
||||||
|
@ -127,6 +127,9 @@ static int __init omap4_sram_init(void)
|
|||||||
struct device_node *np;
|
struct device_node *np;
|
||||||
struct gen_pool *sram_pool;
|
struct gen_pool *sram_pool;
|
||||||
|
|
||||||
|
if (!soc_is_omap44xx() && !soc_is_omap54xx())
|
||||||
|
return 0;
|
||||||
|
|
||||||
np = of_find_compatible_node(NULL, NULL, "ti,omap4-mpu");
|
np = of_find_compatible_node(NULL, NULL, "ti,omap4-mpu");
|
||||||
if (!np)
|
if (!np)
|
||||||
pr_warn("%s:Unable to allocate sram needed to handle errata I688\n",
|
pr_warn("%s:Unable to allocate sram needed to handle errata I688\n",
|
||||||
|
@ -379,7 +379,8 @@ static struct omap_hwmod dra7xx_dcan2_hwmod = {
|
|||||||
static struct omap_hwmod_class_sysconfig dra7xx_epwmss_sysc = {
|
static struct omap_hwmod_class_sysconfig dra7xx_epwmss_sysc = {
|
||||||
.rev_offs = 0x0,
|
.rev_offs = 0x0,
|
||||||
.sysc_offs = 0x4,
|
.sysc_offs = 0x4,
|
||||||
.sysc_flags = SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET,
|
.sysc_flags = SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET |
|
||||||
|
SYSC_HAS_RESET_STATUS,
|
||||||
.idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
|
.idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
|
||||||
.sysc_fields = &omap_hwmod_sysc_type2,
|
.sysc_fields = &omap_hwmod_sysc_type2,
|
||||||
};
|
};
|
||||||
|
@ -175,6 +175,11 @@ static void __init zone_sizes_init(unsigned long min, unsigned long max_low,
|
|||||||
#ifdef CONFIG_HAVE_ARCH_PFN_VALID
|
#ifdef CONFIG_HAVE_ARCH_PFN_VALID
|
||||||
int pfn_valid(unsigned long pfn)
|
int pfn_valid(unsigned long pfn)
|
||||||
{
|
{
|
||||||
|
phys_addr_t addr = __pfn_to_phys(pfn);
|
||||||
|
|
||||||
|
if (__phys_to_pfn(addr) != pfn)
|
||||||
|
return 0;
|
||||||
|
|
||||||
return memblock_is_map_memory(__pfn_to_phys(pfn));
|
return memblock_is_map_memory(__pfn_to_phys(pfn));
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(pfn_valid);
|
EXPORT_SYMBOL(pfn_valid);
|
||||||
@ -628,6 +633,7 @@ static void update_sections_early(struct section_perm perms[], int n)
|
|||||||
if (t->flags & PF_KTHREAD)
|
if (t->flags & PF_KTHREAD)
|
||||||
continue;
|
continue;
|
||||||
for_each_thread(t, s)
|
for_each_thread(t, s)
|
||||||
|
if (s->mm)
|
||||||
set_section_perms(perms, n, true, s->mm);
|
set_section_perms(perms, n, true, s->mm);
|
||||||
}
|
}
|
||||||
set_section_perms(perms, n, true, current->active_mm);
|
set_section_perms(perms, n, true, current->active_mm);
|
||||||
|
@ -339,6 +339,12 @@ &i2c3 {
|
|||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&ir {
|
||||||
|
status = "okay";
|
||||||
|
pinctrl-0 = <&remote_input_ao_pins>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
};
|
||||||
|
|
||||||
&pwm_ef {
|
&pwm_ef {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
pinctrl-0 = <&pwm_e_pins>;
|
pinctrl-0 = <&pwm_e_pins>;
|
||||||
|
@ -2386,6 +2386,7 @@ dwc2: usb@ff400000 {
|
|||||||
clocks = <&clkc CLKID_USB1_DDR_BRIDGE>;
|
clocks = <&clkc CLKID_USB1_DDR_BRIDGE>;
|
||||||
clock-names = "ddr";
|
clock-names = "ddr";
|
||||||
phys = <&usb2_phy1>;
|
phys = <&usb2_phy1>;
|
||||||
|
phy-names = "usb2-phy";
|
||||||
dr_mode = "peripheral";
|
dr_mode = "peripheral";
|
||||||
g-rx-fifo-size = <192>;
|
g-rx-fifo-size = <192>;
|
||||||
g-np-tx-fifo-size = <128>;
|
g-np-tx-fifo-size = <128>;
|
||||||
|
@ -53,6 +53,7 @@ tflash_vdd: regulator-tflash_vdd {
|
|||||||
|
|
||||||
gpio = <&gpio_ao GPIOAO_8 GPIO_ACTIVE_HIGH>;
|
gpio = <&gpio_ao GPIOAO_8 GPIO_ACTIVE_HIGH>;
|
||||||
enable-active-high;
|
enable-active-high;
|
||||||
|
regulator-always-on;
|
||||||
};
|
};
|
||||||
|
|
||||||
tf_io: gpio-regulator-tf_io {
|
tf_io: gpio-regulator-tf_io {
|
||||||
|
@ -316,6 +316,7 @@ static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
|
|||||||
regs->uregs[0] = -EINTR;
|
regs->uregs[0] = -EINTR;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
/* Else, fall through */
|
||||||
case -ERESTARTNOINTR:
|
case -ERESTARTNOINTR:
|
||||||
regs->uregs[0] = regs->orig_r0;
|
regs->uregs[0] = regs->orig_r0;
|
||||||
regs->ipc -= 4;
|
regs->ipc -= 4;
|
||||||
@ -360,6 +361,7 @@ static void do_signal(struct pt_regs *regs)
|
|||||||
switch (regs->uregs[0]) {
|
switch (regs->uregs[0]) {
|
||||||
case -ERESTART_RESTARTBLOCK:
|
case -ERESTART_RESTARTBLOCK:
|
||||||
regs->uregs[15] = __NR_restart_syscall;
|
regs->uregs[15] = __NR_restart_syscall;
|
||||||
|
/* Fall through */
|
||||||
case -ERESTARTNOHAND:
|
case -ERESTARTNOHAND:
|
||||||
case -ERESTARTSYS:
|
case -ERESTARTSYS:
|
||||||
case -ERESTARTNOINTR:
|
case -ERESTARTNOINTR:
|
||||||
|
@ -660,8 +660,10 @@ long kvmppc_h_put_tce_indirect(struct kvm_vcpu *vcpu,
|
|||||||
}
|
}
|
||||||
tce = be64_to_cpu(tce);
|
tce = be64_to_cpu(tce);
|
||||||
|
|
||||||
if (kvmppc_tce_to_ua(vcpu->kvm, tce, &ua))
|
if (kvmppc_tce_to_ua(vcpu->kvm, tce, &ua)) {
|
||||||
return H_PARAMETER;
|
ret = H_PARAMETER;
|
||||||
|
goto unlock_exit;
|
||||||
|
}
|
||||||
|
|
||||||
list_for_each_entry_lockless(stit, &stt->iommu_tables, next) {
|
list_for_each_entry_lockless(stit, &stt->iommu_tables, next) {
|
||||||
ret = kvmppc_tce_iommu_map(vcpu->kvm, stt,
|
ret = kvmppc_tce_iommu_map(vcpu->kvm, stt,
|
||||||
|
@ -556,8 +556,10 @@ long kvmppc_rm_h_put_tce_indirect(struct kvm_vcpu *vcpu,
|
|||||||
unsigned long tce = be64_to_cpu(((u64 *)tces)[i]);
|
unsigned long tce = be64_to_cpu(((u64 *)tces)[i]);
|
||||||
|
|
||||||
ua = 0;
|
ua = 0;
|
||||||
if (kvmppc_rm_tce_to_ua(vcpu->kvm, tce, &ua, NULL))
|
if (kvmppc_rm_tce_to_ua(vcpu->kvm, tce, &ua, NULL)) {
|
||||||
return H_PARAMETER;
|
ret = H_PARAMETER;
|
||||||
|
goto unlock_exit;
|
||||||
|
}
|
||||||
|
|
||||||
list_for_each_entry_lockless(stit, &stt->iommu_tables, next) {
|
list_for_each_entry_lockless(stit, &stt->iommu_tables, next) {
|
||||||
ret = kvmppc_rm_tce_iommu_map(vcpu->kvm, stt,
|
ret = kvmppc_rm_tce_iommu_map(vcpu->kvm, stt,
|
||||||
|
@ -30,10 +30,6 @@ enum fixed_addresses {
|
|||||||
__end_of_fixed_addresses
|
__end_of_fixed_addresses
|
||||||
};
|
};
|
||||||
|
|
||||||
#define FIXADDR_SIZE (__end_of_fixed_addresses * PAGE_SIZE)
|
|
||||||
#define FIXADDR_TOP (VMALLOC_START)
|
|
||||||
#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
|
|
||||||
|
|
||||||
#define FIXMAP_PAGE_IO PAGE_KERNEL
|
#define FIXMAP_PAGE_IO PAGE_KERNEL
|
||||||
|
|
||||||
#define __early_set_fixmap __set_fixmap
|
#define __early_set_fixmap __set_fixmap
|
||||||
|
@ -420,14 +420,22 @@ static inline void pgtable_cache_init(void)
|
|||||||
#define VMALLOC_END (PAGE_OFFSET - 1)
|
#define VMALLOC_END (PAGE_OFFSET - 1)
|
||||||
#define VMALLOC_START (PAGE_OFFSET - VMALLOC_SIZE)
|
#define VMALLOC_START (PAGE_OFFSET - VMALLOC_SIZE)
|
||||||
|
|
||||||
|
#define FIXADDR_TOP VMALLOC_START
|
||||||
|
#ifdef CONFIG_64BIT
|
||||||
|
#define FIXADDR_SIZE PMD_SIZE
|
||||||
|
#else
|
||||||
|
#define FIXADDR_SIZE PGDIR_SIZE
|
||||||
|
#endif
|
||||||
|
#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Task size is 0x4000000000 for RV64 or 0xb800000 for RV32.
|
* Task size is 0x4000000000 for RV64 or 0x9fc00000 for RV32.
|
||||||
* Note that PGDIR_SIZE must evenly divide TASK_SIZE.
|
* Note that PGDIR_SIZE must evenly divide TASK_SIZE.
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_64BIT
|
#ifdef CONFIG_64BIT
|
||||||
#define TASK_SIZE (PGDIR_SIZE * PTRS_PER_PGD / 2)
|
#define TASK_SIZE (PGDIR_SIZE * PTRS_PER_PGD / 2)
|
||||||
#else
|
#else
|
||||||
#define TASK_SIZE VMALLOC_START
|
#define TASK_SIZE FIXADDR_START
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <asm-generic/pgtable.h>
|
#include <asm-generic/pgtable.h>
|
||||||
|
@ -863,7 +863,7 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp, int i
|
|||||||
break;
|
break;
|
||||||
case BPF_ALU64 | BPF_NEG: /* dst = -dst */
|
case BPF_ALU64 | BPF_NEG: /* dst = -dst */
|
||||||
/* lcgr %dst,%dst */
|
/* lcgr %dst,%dst */
|
||||||
EMIT4(0xb9130000, dst_reg, dst_reg);
|
EMIT4(0xb9030000, dst_reg, dst_reg);
|
||||||
break;
|
break;
|
||||||
/*
|
/*
|
||||||
* BPF_FROM_BE/LE
|
* BPF_FROM_BE/LE
|
||||||
@ -1049,8 +1049,8 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp, int i
|
|||||||
/* llgf %w1,map.max_entries(%b2) */
|
/* llgf %w1,map.max_entries(%b2) */
|
||||||
EMIT6_DISP_LH(0xe3000000, 0x0016, REG_W1, REG_0, BPF_REG_2,
|
EMIT6_DISP_LH(0xe3000000, 0x0016, REG_W1, REG_0, BPF_REG_2,
|
||||||
offsetof(struct bpf_array, map.max_entries));
|
offsetof(struct bpf_array, map.max_entries));
|
||||||
/* clgrj %b3,%w1,0xa,label0: if %b3 >= %w1 goto out */
|
/* clrj %b3,%w1,0xa,label0: if (u32)%b3 >= (u32)%w1 goto out */
|
||||||
EMIT6_PCREL_LABEL(0xec000000, 0x0065, BPF_REG_3,
|
EMIT6_PCREL_LABEL(0xec000000, 0x0077, BPF_REG_3,
|
||||||
REG_W1, 0, 0xa);
|
REG_W1, 0, 0xa);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1076,8 +1076,10 @@ static noinline int bpf_jit_insn(struct bpf_jit *jit, struct bpf_prog *fp, int i
|
|||||||
* goto out;
|
* goto out;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* sllg %r1,%b3,3: %r1 = index * 8 */
|
/* llgfr %r1,%b3: %r1 = (u32) index */
|
||||||
EMIT6_DISP_LH(0xeb000000, 0x000d, REG_1, BPF_REG_3, REG_0, 3);
|
EMIT4(0xb9160000, REG_1, BPF_REG_3);
|
||||||
|
/* sllg %r1,%r1,3: %r1 *= 8 */
|
||||||
|
EMIT6_DISP_LH(0xeb000000, 0x000d, REG_1, REG_1, REG_0, 3);
|
||||||
/* lg %r1,prog(%b2,%r1) */
|
/* lg %r1,prog(%b2,%r1) */
|
||||||
EMIT6_DISP_LH(0xe3000000, 0x0004, REG_1, BPF_REG_2,
|
EMIT6_DISP_LH(0xe3000000, 0x0004, REG_1, BPF_REG_2,
|
||||||
REG_1, offsetof(struct bpf_array, ptrs));
|
REG_1, offsetof(struct bpf_array, ptrs));
|
||||||
|
@ -38,6 +38,7 @@ REALMODE_CFLAGS := $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING \
|
|||||||
|
|
||||||
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -ffreestanding)
|
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -ffreestanding)
|
||||||
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -fno-stack-protector)
|
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -fno-stack-protector)
|
||||||
|
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -Wno-address-of-packed-member)
|
||||||
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), $(cc_stack_align4))
|
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), $(cc_stack_align4))
|
||||||
export REALMODE_CFLAGS
|
export REALMODE_CFLAGS
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ static unsigned long find_trampoline_placement(void)
|
|||||||
|
|
||||||
/* Find the first usable memory region under bios_start. */
|
/* Find the first usable memory region under bios_start. */
|
||||||
for (i = boot_params->e820_entries - 1; i >= 0; i--) {
|
for (i = boot_params->e820_entries - 1; i >= 0; i--) {
|
||||||
unsigned long new;
|
unsigned long new = bios_start;
|
||||||
|
|
||||||
entry = &boot_params->e820_table[i];
|
entry = &boot_params->e820_table[i];
|
||||||
|
|
||||||
|
@ -661,10 +661,17 @@ static int perf_ibs_handle_irq(struct perf_ibs *perf_ibs, struct pt_regs *iregs)
|
|||||||
|
|
||||||
throttle = perf_event_overflow(event, &data, ®s);
|
throttle = perf_event_overflow(event, &data, ®s);
|
||||||
out:
|
out:
|
||||||
if (throttle)
|
if (throttle) {
|
||||||
perf_ibs_stop(event, 0);
|
perf_ibs_stop(event, 0);
|
||||||
else
|
} else {
|
||||||
perf_ibs_enable_event(perf_ibs, hwc, period >> 4);
|
period >>= 4;
|
||||||
|
|
||||||
|
if ((ibs_caps & IBS_CAPS_RDWROPCNT) &&
|
||||||
|
(*config & IBS_OP_CNT_CTL))
|
||||||
|
period |= *config & IBS_OP_CUR_CNT_RAND;
|
||||||
|
|
||||||
|
perf_ibs_enable_event(perf_ibs, hwc, period);
|
||||||
|
}
|
||||||
|
|
||||||
perf_event_update_userpage(event);
|
perf_event_update_userpage(event);
|
||||||
|
|
||||||
|
@ -3572,6 +3572,11 @@ static u64 bdw_limit_period(struct perf_event *event, u64 left)
|
|||||||
return left;
|
return left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static u64 nhm_limit_period(struct perf_event *event, u64 left)
|
||||||
|
{
|
||||||
|
return max(left, 32ULL);
|
||||||
|
}
|
||||||
|
|
||||||
PMU_FORMAT_ATTR(event, "config:0-7" );
|
PMU_FORMAT_ATTR(event, "config:0-7" );
|
||||||
PMU_FORMAT_ATTR(umask, "config:8-15" );
|
PMU_FORMAT_ATTR(umask, "config:8-15" );
|
||||||
PMU_FORMAT_ATTR(edge, "config:18" );
|
PMU_FORMAT_ATTR(edge, "config:18" );
|
||||||
@ -4606,6 +4611,7 @@ __init int intel_pmu_init(void)
|
|||||||
x86_pmu.pebs_constraints = intel_nehalem_pebs_event_constraints;
|
x86_pmu.pebs_constraints = intel_nehalem_pebs_event_constraints;
|
||||||
x86_pmu.enable_all = intel_pmu_nhm_enable_all;
|
x86_pmu.enable_all = intel_pmu_nhm_enable_all;
|
||||||
x86_pmu.extra_regs = intel_nehalem_extra_regs;
|
x86_pmu.extra_regs = intel_nehalem_extra_regs;
|
||||||
|
x86_pmu.limit_period = nhm_limit_period;
|
||||||
|
|
||||||
mem_attr = nhm_mem_events_attrs;
|
mem_attr = nhm_mem_events_attrs;
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#define HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
|
#define HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
extern void mcount(void);
|
|
||||||
extern atomic_t modifying_ftrace_code;
|
extern atomic_t modifying_ftrace_code;
|
||||||
extern void __fentry__(void);
|
extern void __fentry__(void);
|
||||||
|
|
||||||
|
@ -252,16 +252,20 @@ struct pebs_lbr {
|
|||||||
#define IBSCTL_LVT_OFFSET_VALID (1ULL<<8)
|
#define IBSCTL_LVT_OFFSET_VALID (1ULL<<8)
|
||||||
#define IBSCTL_LVT_OFFSET_MASK 0x0F
|
#define IBSCTL_LVT_OFFSET_MASK 0x0F
|
||||||
|
|
||||||
/* ibs fetch bits/masks */
|
/* IBS fetch bits/masks */
|
||||||
#define IBS_FETCH_RAND_EN (1ULL<<57)
|
#define IBS_FETCH_RAND_EN (1ULL<<57)
|
||||||
#define IBS_FETCH_VAL (1ULL<<49)
|
#define IBS_FETCH_VAL (1ULL<<49)
|
||||||
#define IBS_FETCH_ENABLE (1ULL<<48)
|
#define IBS_FETCH_ENABLE (1ULL<<48)
|
||||||
#define IBS_FETCH_CNT 0xFFFF0000ULL
|
#define IBS_FETCH_CNT 0xFFFF0000ULL
|
||||||
#define IBS_FETCH_MAX_CNT 0x0000FFFFULL
|
#define IBS_FETCH_MAX_CNT 0x0000FFFFULL
|
||||||
|
|
||||||
/* ibs op bits/masks */
|
/*
|
||||||
/* lower 4 bits of the current count are ignored: */
|
* IBS op bits/masks
|
||||||
#define IBS_OP_CUR_CNT (0xFFFF0ULL<<32)
|
* The lower 7 bits of the current count are random bits
|
||||||
|
* preloaded by hardware and ignored in software
|
||||||
|
*/
|
||||||
|
#define IBS_OP_CUR_CNT (0xFFF80ULL<<32)
|
||||||
|
#define IBS_OP_CUR_CNT_RAND (0x0007FULL<<32)
|
||||||
#define IBS_OP_CNT_CTL (1ULL<<19)
|
#define IBS_OP_CNT_CTL (1ULL<<19)
|
||||||
#define IBS_OP_VAL (1ULL<<18)
|
#define IBS_OP_VAL (1ULL<<18)
|
||||||
#define IBS_OP_ENABLE (1ULL<<17)
|
#define IBS_OP_ENABLE (1ULL<<17)
|
||||||
|
@ -1179,6 +1179,10 @@ void clear_local_APIC(void)
|
|||||||
apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
|
apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
|
||||||
v = apic_read(APIC_LVT1);
|
v = apic_read(APIC_LVT1);
|
||||||
apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
|
apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
|
||||||
|
if (!x2apic_enabled()) {
|
||||||
|
v = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
|
||||||
|
apic_write(APIC_LDR, v);
|
||||||
|
}
|
||||||
if (maxlvt >= 4) {
|
if (maxlvt >= 4) {
|
||||||
v = apic_read(APIC_LVTPC);
|
v = apic_read(APIC_LVTPC);
|
||||||
apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
|
apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
|
||||||
|
@ -38,32 +38,12 @@ static int bigsmp_early_logical_apicid(int cpu)
|
|||||||
return early_per_cpu(x86_cpu_to_apicid, cpu);
|
return early_per_cpu(x86_cpu_to_apicid, cpu);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline unsigned long calculate_ldr(int cpu)
|
|
||||||
{
|
|
||||||
unsigned long val, id;
|
|
||||||
|
|
||||||
val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
|
|
||||||
id = per_cpu(x86_bios_cpu_apicid, cpu);
|
|
||||||
val |= SET_APIC_LOGICAL_ID(id);
|
|
||||||
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set up the logical destination ID.
|
* bigsmp enables physical destination mode
|
||||||
*
|
* and doesn't use LDR and DFR
|
||||||
* Intel recommends to set DFR, LDR and TPR before enabling
|
|
||||||
* an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
|
|
||||||
* document number 292116). So here it goes...
|
|
||||||
*/
|
*/
|
||||||
static void bigsmp_init_apic_ldr(void)
|
static void bigsmp_init_apic_ldr(void)
|
||||||
{
|
{
|
||||||
unsigned long val;
|
|
||||||
int cpu = smp_processor_id();
|
|
||||||
|
|
||||||
apic_write(APIC_DFR, APIC_DFR_FLAT);
|
|
||||||
val = calculate_ldr(cpu);
|
|
||||||
apic_write(APIC_LDR, val);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bigsmp_setup_apic_routing(void)
|
static void bigsmp_setup_apic_routing(void)
|
||||||
|
@ -2438,7 +2438,13 @@ unsigned int arch_dynirq_lower_bound(unsigned int from)
|
|||||||
* dmar_alloc_hwirq() may be called before setup_IO_APIC(), so use
|
* dmar_alloc_hwirq() may be called before setup_IO_APIC(), so use
|
||||||
* gsi_top if ioapic_dynirq_base hasn't been initialized yet.
|
* gsi_top if ioapic_dynirq_base hasn't been initialized yet.
|
||||||
*/
|
*/
|
||||||
return ioapic_initialized ? ioapic_dynirq_base : gsi_top;
|
if (!ioapic_initialized)
|
||||||
|
return gsi_top;
|
||||||
|
/*
|
||||||
|
* For DT enabled machines ioapic_dynirq_base is irrelevant and not
|
||||||
|
* updated. So simply return @from if ioapic_dynirq_base == 0.
|
||||||
|
*/
|
||||||
|
return ioapic_dynirq_base ? : from;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_X86_32
|
#ifdef CONFIG_X86_32
|
||||||
|
@ -508,9 +508,12 @@ struct uprobe_xol_ops {
|
|||||||
void (*abort)(struct arch_uprobe *, struct pt_regs *);
|
void (*abort)(struct arch_uprobe *, struct pt_regs *);
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline int sizeof_long(void)
|
static inline int sizeof_long(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
return in_ia32_syscall() ? 4 : 8;
|
/*
|
||||||
|
* Check registers for mode as in_xxx_syscall() does not apply here.
|
||||||
|
*/
|
||||||
|
return user_64bit_mode(regs) ? 8 : 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int default_pre_xol_op(struct arch_uprobe *auprobe, struct pt_regs *regs)
|
static int default_pre_xol_op(struct arch_uprobe *auprobe, struct pt_regs *regs)
|
||||||
@ -521,9 +524,9 @@ static int default_pre_xol_op(struct arch_uprobe *auprobe, struct pt_regs *regs)
|
|||||||
|
|
||||||
static int emulate_push_stack(struct pt_regs *regs, unsigned long val)
|
static int emulate_push_stack(struct pt_regs *regs, unsigned long val)
|
||||||
{
|
{
|
||||||
unsigned long new_sp = regs->sp - sizeof_long();
|
unsigned long new_sp = regs->sp - sizeof_long(regs);
|
||||||
|
|
||||||
if (copy_to_user((void __user *)new_sp, &val, sizeof_long()))
|
if (copy_to_user((void __user *)new_sp, &val, sizeof_long(regs)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
regs->sp = new_sp;
|
regs->sp = new_sp;
|
||||||
@ -556,7 +559,7 @@ static int default_post_xol_op(struct arch_uprobe *auprobe, struct pt_regs *regs
|
|||||||
long correction = utask->vaddr - utask->xol_vaddr;
|
long correction = utask->vaddr - utask->xol_vaddr;
|
||||||
regs->ip += correction;
|
regs->ip += correction;
|
||||||
} else if (auprobe->defparam.fixups & UPROBE_FIX_CALL) {
|
} else if (auprobe->defparam.fixups & UPROBE_FIX_CALL) {
|
||||||
regs->sp += sizeof_long(); /* Pop incorrect return address */
|
regs->sp += sizeof_long(regs); /* Pop incorrect return address */
|
||||||
if (emulate_push_stack(regs, utask->vaddr + auprobe->defparam.ilen))
|
if (emulate_push_stack(regs, utask->vaddr + auprobe->defparam.ilen))
|
||||||
return -ERESTART;
|
return -ERESTART;
|
||||||
}
|
}
|
||||||
@ -675,7 +678,7 @@ static int branch_post_xol_op(struct arch_uprobe *auprobe, struct pt_regs *regs)
|
|||||||
* "call" insn was executed out-of-line. Just restore ->sp and restart.
|
* "call" insn was executed out-of-line. Just restore ->sp and restart.
|
||||||
* We could also restore ->ip and try to call branch_emulate_op() again.
|
* We could also restore ->ip and try to call branch_emulate_op() again.
|
||||||
*/
|
*/
|
||||||
regs->sp += sizeof_long();
|
regs->sp += sizeof_long(regs);
|
||||||
return -ERESTART;
|
return -ERESTART;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1056,7 +1059,7 @@ bool arch_uprobe_skip_sstep(struct arch_uprobe *auprobe, struct pt_regs *regs)
|
|||||||
unsigned long
|
unsigned long
|
||||||
arch_uretprobe_hijack_return_addr(unsigned long trampoline_vaddr, struct pt_regs *regs)
|
arch_uretprobe_hijack_return_addr(unsigned long trampoline_vaddr, struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
int rasize = sizeof_long(), nleft;
|
int rasize = sizeof_long(regs), nleft;
|
||||||
unsigned long orig_ret_vaddr = 0; /* clear high bits for 32-bit apps */
|
unsigned long orig_ret_vaddr = 0; /* clear high bits for 32-bit apps */
|
||||||
|
|
||||||
if (copy_from_user(&orig_ret_vaddr, (void __user *)regs->sp, rasize))
|
if (copy_from_user(&orig_ret_vaddr, (void __user *)regs->sp, rasize))
|
||||||
|
@ -1781,7 +1781,7 @@ int kvm_vm_ioctl_hv_eventfd(struct kvm *kvm, struct kvm_hyperv_eventfd *args)
|
|||||||
int kvm_vcpu_ioctl_get_hv_cpuid(struct kvm_vcpu *vcpu, struct kvm_cpuid2 *cpuid,
|
int kvm_vcpu_ioctl_get_hv_cpuid(struct kvm_vcpu *vcpu, struct kvm_cpuid2 *cpuid,
|
||||||
struct kvm_cpuid_entry2 __user *entries)
|
struct kvm_cpuid_entry2 __user *entries)
|
||||||
{
|
{
|
||||||
uint16_t evmcs_ver = kvm_x86_ops->nested_get_evmcs_version(vcpu);
|
uint16_t evmcs_ver = 0;
|
||||||
struct kvm_cpuid_entry2 cpuid_entries[] = {
|
struct kvm_cpuid_entry2 cpuid_entries[] = {
|
||||||
{ .function = HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS },
|
{ .function = HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS },
|
||||||
{ .function = HYPERV_CPUID_INTERFACE },
|
{ .function = HYPERV_CPUID_INTERFACE },
|
||||||
@ -1793,6 +1793,9 @@ int kvm_vcpu_ioctl_get_hv_cpuid(struct kvm_vcpu *vcpu, struct kvm_cpuid2 *cpuid,
|
|||||||
};
|
};
|
||||||
int i, nent = ARRAY_SIZE(cpuid_entries);
|
int i, nent = ARRAY_SIZE(cpuid_entries);
|
||||||
|
|
||||||
|
if (kvm_x86_ops->nested_get_evmcs_version)
|
||||||
|
evmcs_ver = kvm_x86_ops->nested_get_evmcs_version(vcpu);
|
||||||
|
|
||||||
/* Skip NESTED_FEATURES if eVMCS is not supported */
|
/* Skip NESTED_FEATURES if eVMCS is not supported */
|
||||||
if (!evmcs_ver)
|
if (!evmcs_ver)
|
||||||
--nent;
|
--nent;
|
||||||
|
@ -7128,12 +7128,6 @@ static int svm_unregister_enc_region(struct kvm *kvm,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint16_t nested_get_evmcs_version(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
/* Not supported */
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
|
static int nested_enable_evmcs(struct kvm_vcpu *vcpu,
|
||||||
uint16_t *vmcs_version)
|
uint16_t *vmcs_version)
|
||||||
{
|
{
|
||||||
@ -7332,7 +7326,7 @@ static struct kvm_x86_ops svm_x86_ops __ro_after_init = {
|
|||||||
.mem_enc_unreg_region = svm_unregister_enc_region,
|
.mem_enc_unreg_region = svm_unregister_enc_region,
|
||||||
|
|
||||||
.nested_enable_evmcs = nested_enable_evmcs,
|
.nested_enable_evmcs = nested_enable_evmcs,
|
||||||
.nested_get_evmcs_version = nested_get_evmcs_version,
|
.nested_get_evmcs_version = NULL,
|
||||||
|
|
||||||
.need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
|
.need_emulation_on_page_fault = svm_need_emulation_on_page_fault,
|
||||||
};
|
};
|
||||||
|
@ -7797,6 +7797,7 @@ static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
|
|||||||
.set_nested_state = NULL,
|
.set_nested_state = NULL,
|
||||||
.get_vmcs12_pages = NULL,
|
.get_vmcs12_pages = NULL,
|
||||||
.nested_enable_evmcs = NULL,
|
.nested_enable_evmcs = NULL,
|
||||||
|
.nested_get_evmcs_version = NULL,
|
||||||
.need_emulation_on_page_fault = vmx_need_emulation_on_page_fault,
|
.need_emulation_on_page_fault = vmx_need_emulation_on_page_fault,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -6594,12 +6594,13 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu,
|
|||||||
unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
|
unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
|
||||||
toggle_interruptibility(vcpu, ctxt->interruptibility);
|
toggle_interruptibility(vcpu, ctxt->interruptibility);
|
||||||
vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
|
vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
|
||||||
|
if (!ctxt->have_exception ||
|
||||||
|
exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
|
||||||
kvm_rip_write(vcpu, ctxt->eip);
|
kvm_rip_write(vcpu, ctxt->eip);
|
||||||
if (r == EMULATE_DONE && ctxt->tf)
|
if (r == EMULATE_DONE && ctxt->tf)
|
||||||
kvm_vcpu_do_singlestep(vcpu, &r);
|
kvm_vcpu_do_singlestep(vcpu, &r);
|
||||||
if (!ctxt->have_exception ||
|
|
||||||
exception_type(ctxt->exception.vector) == EXCPT_TRAP)
|
|
||||||
__kvm_set_rflags(vcpu, ctxt->eflags);
|
__kvm_set_rflags(vcpu, ctxt->eflags);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For STI, interrupts are shadowed; so KVM_REQ_EVENT will
|
* For STI, interrupts are shadowed; so KVM_REQ_EVENT will
|
||||||
|
@ -516,7 +516,7 @@ static inline void check_conflict(int warnlvl, pgprot_t prot, pgprotval_t val,
|
|||||||
*/
|
*/
|
||||||
static inline pgprot_t static_protections(pgprot_t prot, unsigned long start,
|
static inline pgprot_t static_protections(pgprot_t prot, unsigned long start,
|
||||||
unsigned long pfn, unsigned long npg,
|
unsigned long pfn, unsigned long npg,
|
||||||
int warnlvl)
|
unsigned long lpsize, int warnlvl)
|
||||||
{
|
{
|
||||||
pgprotval_t forbidden, res;
|
pgprotval_t forbidden, res;
|
||||||
unsigned long end;
|
unsigned long end;
|
||||||
@ -535,9 +535,17 @@ static inline pgprot_t static_protections(pgprot_t prot, unsigned long start,
|
|||||||
check_conflict(warnlvl, prot, res, start, end, pfn, "Text NX");
|
check_conflict(warnlvl, prot, res, start, end, pfn, "Text NX");
|
||||||
forbidden = res;
|
forbidden = res;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Special case to preserve a large page. If the change spawns the
|
||||||
|
* full large page mapping then there is no point to split it
|
||||||
|
* up. Happens with ftrace and is going to be removed once ftrace
|
||||||
|
* switched to text_poke().
|
||||||
|
*/
|
||||||
|
if (lpsize != (npg * PAGE_SIZE) || (start & (lpsize - 1))) {
|
||||||
res = protect_kernel_text_ro(start, end);
|
res = protect_kernel_text_ro(start, end);
|
||||||
check_conflict(warnlvl, prot, res, start, end, pfn, "Text RO");
|
check_conflict(warnlvl, prot, res, start, end, pfn, "Text RO");
|
||||||
forbidden |= res;
|
forbidden |= res;
|
||||||
|
}
|
||||||
|
|
||||||
/* Check the PFN directly */
|
/* Check the PFN directly */
|
||||||
res = protect_pci_bios(pfn, pfn + npg - 1);
|
res = protect_pci_bios(pfn, pfn + npg - 1);
|
||||||
@ -819,7 +827,7 @@ static int __should_split_large_page(pte_t *kpte, unsigned long address,
|
|||||||
* extra conditional required here.
|
* extra conditional required here.
|
||||||
*/
|
*/
|
||||||
chk_prot = static_protections(old_prot, lpaddr, old_pfn, numpages,
|
chk_prot = static_protections(old_prot, lpaddr, old_pfn, numpages,
|
||||||
CPA_CONFLICT);
|
psize, CPA_CONFLICT);
|
||||||
|
|
||||||
if (WARN_ON_ONCE(pgprot_val(chk_prot) != pgprot_val(old_prot))) {
|
if (WARN_ON_ONCE(pgprot_val(chk_prot) != pgprot_val(old_prot))) {
|
||||||
/*
|
/*
|
||||||
@ -855,7 +863,7 @@ static int __should_split_large_page(pte_t *kpte, unsigned long address,
|
|||||||
* protection requirement in the large page.
|
* protection requirement in the large page.
|
||||||
*/
|
*/
|
||||||
new_prot = static_protections(req_prot, lpaddr, old_pfn, numpages,
|
new_prot = static_protections(req_prot, lpaddr, old_pfn, numpages,
|
||||||
CPA_DETECT);
|
psize, CPA_DETECT);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If there is a conflict, split the large page.
|
* If there is a conflict, split the large page.
|
||||||
@ -906,7 +914,8 @@ static void split_set_pte(struct cpa_data *cpa, pte_t *pte, unsigned long pfn,
|
|||||||
if (!cpa->force_static_prot)
|
if (!cpa->force_static_prot)
|
||||||
goto set;
|
goto set;
|
||||||
|
|
||||||
prot = static_protections(ref_prot, address, pfn, npg, CPA_PROTECT);
|
/* Hand in lpsize = 0 to enforce the protection mechanism */
|
||||||
|
prot = static_protections(ref_prot, address, pfn, npg, 0, CPA_PROTECT);
|
||||||
|
|
||||||
if (pgprot_val(prot) == pgprot_val(ref_prot))
|
if (pgprot_val(prot) == pgprot_val(ref_prot))
|
||||||
goto set;
|
goto set;
|
||||||
@ -1503,7 +1512,8 @@ static int __change_page_attr(struct cpa_data *cpa, int primary)
|
|||||||
pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
|
pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
|
||||||
|
|
||||||
cpa_inc_4k_install();
|
cpa_inc_4k_install();
|
||||||
new_prot = static_protections(new_prot, address, pfn, 1,
|
/* Hand in lpsize = 0 to enforce the protection mechanism */
|
||||||
|
new_prot = static_protections(new_prot, address, pfn, 1, 0,
|
||||||
CPA_PROTECT);
|
CPA_PROTECT);
|
||||||
|
|
||||||
new_prot = pgprot_clear_protnone_bits(new_prot);
|
new_prot = pgprot_clear_protnone_bits(new_prot);
|
||||||
|
@ -200,7 +200,7 @@ config ATM_NICSTAR_USE_SUNI
|
|||||||
make the card work).
|
make the card work).
|
||||||
|
|
||||||
config ATM_NICSTAR_USE_IDT77105
|
config ATM_NICSTAR_USE_IDT77105
|
||||||
bool "Use IDT77015 PHY driver (25Mbps)"
|
bool "Use IDT77105 PHY driver (25Mbps)"
|
||||||
depends on ATM_NICSTAR
|
depends on ATM_NICSTAR
|
||||||
help
|
help
|
||||||
Support for the PHYsical layer chip in ForeRunner LE25 cards. In
|
Support for the PHYsical layer chip in ForeRunner LE25 cards. In
|
||||||
|
@ -3038,6 +3038,17 @@ static bool rbd_obj_advance_read(struct rbd_obj_request *obj_req, int *result)
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
case RBD_OBJ_READ_PARENT:
|
case RBD_OBJ_READ_PARENT:
|
||||||
|
/*
|
||||||
|
* The parent image is read only up to the overlap -- zero-fill
|
||||||
|
* from the overlap to the end of the request.
|
||||||
|
*/
|
||||||
|
if (!*result) {
|
||||||
|
u32 obj_overlap = rbd_obj_img_extents_bytes(obj_req);
|
||||||
|
|
||||||
|
if (obj_overlap < obj_req->ex.oe_len)
|
||||||
|
rbd_obj_zero_range(obj_req, obj_overlap,
|
||||||
|
obj_req->ex.oe_len - obj_overlap);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
BUG();
|
BUG();
|
||||||
|
@ -456,6 +456,17 @@ struct hisi_lpc_acpi_cell {
|
|||||||
size_t pdata_size;
|
size_t pdata_size;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void hisi_lpc_acpi_remove(struct device *hostdev)
|
||||||
|
{
|
||||||
|
struct acpi_device *adev = ACPI_COMPANION(hostdev);
|
||||||
|
struct acpi_device *child;
|
||||||
|
|
||||||
|
device_for_each_child(hostdev, NULL, hisi_lpc_acpi_remove_subdev);
|
||||||
|
|
||||||
|
list_for_each_entry(child, &adev->children, node)
|
||||||
|
acpi_device_clear_enumerated(child);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* hisi_lpc_acpi_probe - probe children for ACPI FW
|
* hisi_lpc_acpi_probe - probe children for ACPI FW
|
||||||
* @hostdev: LPC host device pointer
|
* @hostdev: LPC host device pointer
|
||||||
@ -555,8 +566,7 @@ static int hisi_lpc_acpi_probe(struct device *hostdev)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
device_for_each_child(hostdev, NULL,
|
hisi_lpc_acpi_remove(hostdev);
|
||||||
hisi_lpc_acpi_remove_subdev);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -569,6 +579,10 @@ static int hisi_lpc_acpi_probe(struct device *dev)
|
|||||||
{
|
{
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void hisi_lpc_acpi_remove(struct device *hostdev)
|
||||||
|
{
|
||||||
|
}
|
||||||
#endif // CONFIG_ACPI
|
#endif // CONFIG_ACPI
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -606,24 +620,27 @@ static int hisi_lpc_probe(struct platform_device *pdev)
|
|||||||
range->fwnode = dev->fwnode;
|
range->fwnode = dev->fwnode;
|
||||||
range->flags = LOGIC_PIO_INDIRECT;
|
range->flags = LOGIC_PIO_INDIRECT;
|
||||||
range->size = PIO_INDIRECT_SIZE;
|
range->size = PIO_INDIRECT_SIZE;
|
||||||
|
range->hostdata = lpcdev;
|
||||||
|
range->ops = &hisi_lpc_ops;
|
||||||
|
lpcdev->io_host = range;
|
||||||
|
|
||||||
ret = logic_pio_register_range(range);
|
ret = logic_pio_register_range(range);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(dev, "register IO range failed (%d)!\n", ret);
|
dev_err(dev, "register IO range failed (%d)!\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
lpcdev->io_host = range;
|
|
||||||
|
|
||||||
/* register the LPC host PIO resources */
|
/* register the LPC host PIO resources */
|
||||||
if (acpi_device)
|
if (acpi_device)
|
||||||
ret = hisi_lpc_acpi_probe(dev);
|
ret = hisi_lpc_acpi_probe(dev);
|
||||||
else
|
else
|
||||||
ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
|
ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
|
||||||
if (ret)
|
if (ret) {
|
||||||
|
logic_pio_unregister_range(range);
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
lpcdev->io_host->hostdata = lpcdev;
|
dev_set_drvdata(dev, lpcdev);
|
||||||
lpcdev->io_host->ops = &hisi_lpc_ops;
|
|
||||||
|
|
||||||
io_end = lpcdev->io_host->io_start + lpcdev->io_host->size;
|
io_end = lpcdev->io_host->io_start + lpcdev->io_host->size;
|
||||||
dev_info(dev, "registered range [%pa - %pa]\n",
|
dev_info(dev, "registered range [%pa - %pa]\n",
|
||||||
@ -632,6 +649,23 @@ static int hisi_lpc_probe(struct platform_device *pdev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int hisi_lpc_remove(struct platform_device *pdev)
|
||||||
|
{
|
||||||
|
struct device *dev = &pdev->dev;
|
||||||
|
struct acpi_device *acpi_device = ACPI_COMPANION(dev);
|
||||||
|
struct hisi_lpc_dev *lpcdev = dev_get_drvdata(dev);
|
||||||
|
struct logic_pio_hwaddr *range = lpcdev->io_host;
|
||||||
|
|
||||||
|
if (acpi_device)
|
||||||
|
hisi_lpc_acpi_remove(dev);
|
||||||
|
else
|
||||||
|
of_platform_depopulate(dev);
|
||||||
|
|
||||||
|
logic_pio_unregister_range(range);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static const struct of_device_id hisi_lpc_of_match[] = {
|
static const struct of_device_id hisi_lpc_of_match[] = {
|
||||||
{ .compatible = "hisilicon,hip06-lpc", },
|
{ .compatible = "hisilicon,hip06-lpc", },
|
||||||
{ .compatible = "hisilicon,hip07-lpc", },
|
{ .compatible = "hisilicon,hip07-lpc", },
|
||||||
@ -645,5 +679,6 @@ static struct platform_driver hisi_lpc_driver = {
|
|||||||
.acpi_match_table = ACPI_PTR(hisi_lpc_acpi_match),
|
.acpi_match_table = ACPI_PTR(hisi_lpc_acpi_match),
|
||||||
},
|
},
|
||||||
.probe = hisi_lpc_probe,
|
.probe = hisi_lpc_probe,
|
||||||
|
.remove = hisi_lpc_remove,
|
||||||
};
|
};
|
||||||
builtin_platform_driver(hisi_lpc_driver);
|
builtin_platform_driver(hisi_lpc_driver);
|
||||||
|
@ -949,7 +949,7 @@ static int sysc_best_idle_mode(u32 idlemodes, u32 *best_mode)
|
|||||||
*best_mode = SYSC_IDLE_SMART_WKUP;
|
*best_mode = SYSC_IDLE_SMART_WKUP;
|
||||||
else if (idlemodes & BIT(SYSC_IDLE_SMART))
|
else if (idlemodes & BIT(SYSC_IDLE_SMART))
|
||||||
*best_mode = SYSC_IDLE_SMART;
|
*best_mode = SYSC_IDLE_SMART;
|
||||||
else if (idlemodes & SYSC_IDLE_FORCE)
|
else if (idlemodes & BIT(SYSC_IDLE_FORCE))
|
||||||
*best_mode = SYSC_IDLE_FORCE;
|
*best_mode = SYSC_IDLE_FORCE;
|
||||||
else
|
else
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
@ -1267,7 +1267,8 @@ static const struct sysc_revision_quirk sysc_revision_quirks[] = {
|
|||||||
SYSC_QUIRK("control", 0, 0, 0x10, -1, 0x40000900, 0xffffffff, 0),
|
SYSC_QUIRK("control", 0, 0, 0x10, -1, 0x40000900, 0xffffffff, 0),
|
||||||
SYSC_QUIRK("cpgmac", 0, 0x1200, 0x1208, 0x1204, 0x4edb1902,
|
SYSC_QUIRK("cpgmac", 0, 0x1200, 0x1208, 0x1204, 0x4edb1902,
|
||||||
0xffff00f0, 0),
|
0xffff00f0, 0),
|
||||||
SYSC_QUIRK("dcan", 0, 0, -1, -1, 0xffffffff, 0xffffffff, 0),
|
SYSC_QUIRK("dcan", 0, 0x20, -1, -1, 0xa3170504, 0xffffffff, 0),
|
||||||
|
SYSC_QUIRK("dcan", 0, 0x20, -1, -1, 0x4edb1902, 0xffffffff, 0),
|
||||||
SYSC_QUIRK("dmic", 0, 0, 0x10, -1, 0x50010000, 0xffffffff, 0),
|
SYSC_QUIRK("dmic", 0, 0, 0x10, -1, 0x50010000, 0xffffffff, 0),
|
||||||
SYSC_QUIRK("dwc3", 0, 0, 0x10, -1, 0x500a0200, 0xffffffff, 0),
|
SYSC_QUIRK("dwc3", 0, 0, 0x10, -1, 0x500a0200, 0xffffffff, 0),
|
||||||
SYSC_QUIRK("epwmss", 0, 0, 0x4, -1, 0x47400001, 0xffffffff, 0),
|
SYSC_QUIRK("epwmss", 0, 0, 0x4, -1, 0x47400001, 0xffffffff, 0),
|
||||||
@ -1692,10 +1693,7 @@ static int sysc_init_sysc_mask(struct sysc *ddata)
|
|||||||
if (error)
|
if (error)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (val)
|
|
||||||
ddata->cfg.sysc_val = val & ddata->cap->sysc_mask;
|
ddata->cfg.sysc_val = val & ddata->cap->sysc_mask;
|
||||||
else
|
|
||||||
ddata->cfg.sysc_val = ddata->cap->sysc_mask;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -2385,27 +2383,27 @@ static int sysc_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
error = sysc_init_dts_quirks(ddata);
|
error = sysc_init_dts_quirks(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
goto unprepare;
|
return error;
|
||||||
|
|
||||||
error = sysc_map_and_check_registers(ddata);
|
error = sysc_map_and_check_registers(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
goto unprepare;
|
return error;
|
||||||
|
|
||||||
error = sysc_init_sysc_mask(ddata);
|
error = sysc_init_sysc_mask(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
goto unprepare;
|
return error;
|
||||||
|
|
||||||
error = sysc_init_idlemodes(ddata);
|
error = sysc_init_idlemodes(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
goto unprepare;
|
return error;
|
||||||
|
|
||||||
error = sysc_init_syss_mask(ddata);
|
error = sysc_init_syss_mask(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
goto unprepare;
|
return error;
|
||||||
|
|
||||||
error = sysc_init_pdata(ddata);
|
error = sysc_init_pdata(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
goto unprepare;
|
return error;
|
||||||
|
|
||||||
sysc_init_early_quirks(ddata);
|
sysc_init_early_quirks(ddata);
|
||||||
|
|
||||||
@ -2415,7 +2413,7 @@ static int sysc_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
error = sysc_init_resets(ddata);
|
error = sysc_init_resets(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
return error;
|
goto unprepare;
|
||||||
|
|
||||||
error = sysc_init_module(ddata);
|
error = sysc_init_module(ddata);
|
||||||
if (error)
|
if (error)
|
||||||
|
@ -540,6 +540,10 @@ int ccp_dev_suspend(struct sp_device *sp, pm_message_t state)
|
|||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
|
/* If there's no device there's nothing to do */
|
||||||
|
if (!ccp)
|
||||||
|
return 0;
|
||||||
|
|
||||||
spin_lock_irqsave(&ccp->cmd_lock, flags);
|
spin_lock_irqsave(&ccp->cmd_lock, flags);
|
||||||
|
|
||||||
ccp->suspending = 1;
|
ccp->suspending = 1;
|
||||||
@ -564,6 +568,10 @@ int ccp_dev_resume(struct sp_device *sp)
|
|||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
|
/* If there's no device there's nothing to do */
|
||||||
|
if (!ccp)
|
||||||
|
return 0;
|
||||||
|
|
||||||
spin_lock_irqsave(&ccp->cmd_lock, flags);
|
spin_lock_irqsave(&ccp->cmd_lock, flags);
|
||||||
|
|
||||||
ccp->suspending = 0;
|
ccp->suspending = 0;
|
||||||
|
@ -210,7 +210,7 @@ static int altera_ps_write_complete(struct fpga_manager *mgr,
|
|||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!IS_ERR(conf->confd)) {
|
if (conf->confd) {
|
||||||
if (!gpiod_get_raw_value_cansleep(conf->confd)) {
|
if (!gpiod_get_raw_value_cansleep(conf->confd)) {
|
||||||
dev_err(&mgr->dev, "CONF_DONE is inactive!\n");
|
dev_err(&mgr->dev, "CONF_DONE is inactive!\n");
|
||||||
return -EIO;
|
return -EIO;
|
||||||
@ -289,10 +289,13 @@ static int altera_ps_probe(struct spi_device *spi)
|
|||||||
return PTR_ERR(conf->status);
|
return PTR_ERR(conf->status);
|
||||||
}
|
}
|
||||||
|
|
||||||
conf->confd = devm_gpiod_get(&spi->dev, "confd", GPIOD_IN);
|
conf->confd = devm_gpiod_get_optional(&spi->dev, "confd", GPIOD_IN);
|
||||||
if (IS_ERR(conf->confd)) {
|
if (IS_ERR(conf->confd)) {
|
||||||
dev_warn(&spi->dev, "Not using confd gpio: %ld\n",
|
dev_err(&spi->dev, "Failed to get confd gpio: %ld\n",
|
||||||
PTR_ERR(conf->confd));
|
PTR_ERR(conf->confd));
|
||||||
|
return PTR_ERR(conf->confd);
|
||||||
|
} else if (!conf->confd) {
|
||||||
|
dev_warn(&spi->dev, "Not using confd gpio");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Register manager with unique name */
|
/* Register manager with unique name */
|
||||||
|
@ -38,8 +38,7 @@
|
|||||||
#define SCOM_STATUS_PIB_RESP_MASK 0x00007000
|
#define SCOM_STATUS_PIB_RESP_MASK 0x00007000
|
||||||
#define SCOM_STATUS_PIB_RESP_SHIFT 12
|
#define SCOM_STATUS_PIB_RESP_SHIFT 12
|
||||||
|
|
||||||
#define SCOM_STATUS_ANY_ERR (SCOM_STATUS_ERR_SUMMARY | \
|
#define SCOM_STATUS_ANY_ERR (SCOM_STATUS_PROTECTION | \
|
||||||
SCOM_STATUS_PROTECTION | \
|
|
||||||
SCOM_STATUS_PARITY | \
|
SCOM_STATUS_PARITY | \
|
||||||
SCOM_STATUS_PIB_ABORT | \
|
SCOM_STATUS_PIB_ABORT | \
|
||||||
SCOM_STATUS_PIB_RESP_MASK)
|
SCOM_STATUS_PIB_RESP_MASK)
|
||||||
@ -251,11 +250,6 @@ static int handle_fsi2pib_status(struct scom_device *scom, uint32_t status)
|
|||||||
/* Return -EBUSY on PIB abort to force a retry */
|
/* Return -EBUSY on PIB abort to force a retry */
|
||||||
if (status & SCOM_STATUS_PIB_ABORT)
|
if (status & SCOM_STATUS_PIB_ABORT)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
if (status & SCOM_STATUS_ERR_SUMMARY) {
|
|
||||||
fsi_device_write(scom->fsi_dev, SCOM_FSI2PIB_RESET_REG, &dummy,
|
|
||||||
sizeof(uint32_t));
|
|
||||||
return -EIO;
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -574,6 +574,7 @@ static const struct amdgpu_px_quirk amdgpu_px_quirk_list[] = {
|
|||||||
{ 0x1002, 0x6900, 0x1002, 0x0124, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
{ 0x1002, 0x6900, 0x1002, 0x0124, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
||||||
{ 0x1002, 0x6900, 0x1028, 0x0812, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
{ 0x1002, 0x6900, 0x1028, 0x0812, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
||||||
{ 0x1002, 0x6900, 0x1028, 0x0813, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
{ 0x1002, 0x6900, 0x1028, 0x0813, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
||||||
|
{ 0x1002, 0x699f, 0x1028, 0x0814, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
||||||
{ 0x1002, 0x6900, 0x1025, 0x125A, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
{ 0x1002, 0x6900, 0x1025, 0x125A, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
||||||
{ 0x1002, 0x6900, 0x17AA, 0x3806, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
{ 0x1002, 0x6900, 0x17AA, 0x3806, AMDGPU_PX_QUIRK_FORCE_ATPX },
|
||||||
{ 0, 0, 0, 0, 0 },
|
{ 0, 0, 0, 0, 0 },
|
||||||
|
@ -534,22 +534,25 @@ int amdgpu_ctx_wait_prev_fence(struct amdgpu_ctx *ctx,
|
|||||||
struct drm_sched_entity *entity)
|
struct drm_sched_entity *entity)
|
||||||
{
|
{
|
||||||
struct amdgpu_ctx_entity *centity = to_amdgpu_ctx_entity(entity);
|
struct amdgpu_ctx_entity *centity = to_amdgpu_ctx_entity(entity);
|
||||||
unsigned idx = centity->sequence & (amdgpu_sched_jobs - 1);
|
struct dma_fence *other;
|
||||||
struct dma_fence *other = centity->fences[idx];
|
unsigned idx;
|
||||||
|
long r;
|
||||||
|
|
||||||
|
spin_lock(&ctx->ring_lock);
|
||||||
|
idx = centity->sequence & (amdgpu_sched_jobs - 1);
|
||||||
|
other = dma_fence_get(centity->fences[idx]);
|
||||||
|
spin_unlock(&ctx->ring_lock);
|
||||||
|
|
||||||
|
if (!other)
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (other) {
|
|
||||||
signed long r;
|
|
||||||
r = dma_fence_wait(other, true);
|
r = dma_fence_wait(other, true);
|
||||||
if (r < 0) {
|
if (r < 0 && r != -ERESTARTSYS)
|
||||||
if (r != -ERESTARTSYS)
|
|
||||||
DRM_ERROR("Error (%ld) waiting for fence!\n", r);
|
DRM_ERROR("Error (%ld) waiting for fence!\n", r);
|
||||||
|
|
||||||
|
dma_fence_put(other);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
|
void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
|
||||||
{
|
{
|
||||||
|
@ -596,14 +596,14 @@ static void gfx_v9_0_check_if_need_gfxoff(struct amdgpu_device *adev)
|
|||||||
case CHIP_VEGA20:
|
case CHIP_VEGA20:
|
||||||
break;
|
break;
|
||||||
case CHIP_RAVEN:
|
case CHIP_RAVEN:
|
||||||
if (adev->rev_id >= 0x8 || adev->pdev->device == 0x15d8)
|
if (!(adev->rev_id >= 0x8 || adev->pdev->device == 0x15d8)
|
||||||
break;
|
&&((adev->gfx.rlc_fw_version != 106 &&
|
||||||
if ((adev->gfx.rlc_fw_version != 106 &&
|
|
||||||
adev->gfx.rlc_fw_version < 531) ||
|
adev->gfx.rlc_fw_version < 531) ||
|
||||||
(adev->gfx.rlc_fw_version == 53815) ||
|
(adev->gfx.rlc_fw_version == 53815) ||
|
||||||
(adev->gfx.rlc_feature_version < 1) ||
|
(adev->gfx.rlc_feature_version < 1) ||
|
||||||
!adev->gfx.rlc.is_rlc_v2_1)
|
!adev->gfx.rlc.is_rlc_v2_1))
|
||||||
adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
|
adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
|
||||||
|
|
||||||
if (adev->pm.pp_feature & PP_GFXOFF_MASK)
|
if (adev->pm.pp_feature & PP_GFXOFF_MASK)
|
||||||
adev->pg_flags |= AMD_PG_SUPPORT_GFX_PG |
|
adev->pg_flags |= AMD_PG_SUPPORT_GFX_PG |
|
||||||
AMD_PG_SUPPORT_CP |
|
AMD_PG_SUPPORT_CP |
|
||||||
|
@ -2101,6 +2101,10 @@ static int vega20_get_gpu_power(struct pp_hwmgr *hwmgr,
|
|||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
/* For the 40.46 release, they changed the value name */
|
||||||
|
if (hwmgr->smu_version == 0x282e00)
|
||||||
|
*query = metrics_table.AverageSocketPower << 8;
|
||||||
|
else
|
||||||
*query = metrics_table.CurrSocketPower << 8;
|
*query = metrics_table.CurrSocketPower << 8;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
@ -2349,12 +2353,16 @@ static int vega20_force_dpm_highest(struct pp_hwmgr *hwmgr)
|
|||||||
data->dpm_table.soc_table.dpm_state.soft_max_level =
|
data->dpm_table.soc_table.dpm_state.soft_max_level =
|
||||||
data->dpm_table.soc_table.dpm_levels[soft_level].value;
|
data->dpm_table.soc_table.dpm_levels[soft_level].value;
|
||||||
|
|
||||||
ret = vega20_upload_dpm_min_level(hwmgr, 0xFFFFFFFF);
|
ret = vega20_upload_dpm_min_level(hwmgr, FEATURE_DPM_GFXCLK_MASK |
|
||||||
|
FEATURE_DPM_UCLK_MASK |
|
||||||
|
FEATURE_DPM_SOCCLK_MASK);
|
||||||
PP_ASSERT_WITH_CODE(!ret,
|
PP_ASSERT_WITH_CODE(!ret,
|
||||||
"Failed to upload boot level to highest!",
|
"Failed to upload boot level to highest!",
|
||||||
return ret);
|
return ret);
|
||||||
|
|
||||||
ret = vega20_upload_dpm_max_level(hwmgr, 0xFFFFFFFF);
|
ret = vega20_upload_dpm_max_level(hwmgr, FEATURE_DPM_GFXCLK_MASK |
|
||||||
|
FEATURE_DPM_UCLK_MASK |
|
||||||
|
FEATURE_DPM_SOCCLK_MASK);
|
||||||
PP_ASSERT_WITH_CODE(!ret,
|
PP_ASSERT_WITH_CODE(!ret,
|
||||||
"Failed to upload dpm max level to highest!",
|
"Failed to upload dpm max level to highest!",
|
||||||
return ret);
|
return ret);
|
||||||
@ -2387,12 +2395,16 @@ static int vega20_force_dpm_lowest(struct pp_hwmgr *hwmgr)
|
|||||||
data->dpm_table.soc_table.dpm_state.soft_max_level =
|
data->dpm_table.soc_table.dpm_state.soft_max_level =
|
||||||
data->dpm_table.soc_table.dpm_levels[soft_level].value;
|
data->dpm_table.soc_table.dpm_levels[soft_level].value;
|
||||||
|
|
||||||
ret = vega20_upload_dpm_min_level(hwmgr, 0xFFFFFFFF);
|
ret = vega20_upload_dpm_min_level(hwmgr, FEATURE_DPM_GFXCLK_MASK |
|
||||||
|
FEATURE_DPM_UCLK_MASK |
|
||||||
|
FEATURE_DPM_SOCCLK_MASK);
|
||||||
PP_ASSERT_WITH_CODE(!ret,
|
PP_ASSERT_WITH_CODE(!ret,
|
||||||
"Failed to upload boot level to highest!",
|
"Failed to upload boot level to highest!",
|
||||||
return ret);
|
return ret);
|
||||||
|
|
||||||
ret = vega20_upload_dpm_max_level(hwmgr, 0xFFFFFFFF);
|
ret = vega20_upload_dpm_max_level(hwmgr, FEATURE_DPM_GFXCLK_MASK |
|
||||||
|
FEATURE_DPM_UCLK_MASK |
|
||||||
|
FEATURE_DPM_SOCCLK_MASK);
|
||||||
PP_ASSERT_WITH_CODE(!ret,
|
PP_ASSERT_WITH_CODE(!ret,
|
||||||
"Failed to upload dpm max level to highest!",
|
"Failed to upload dpm max level to highest!",
|
||||||
return ret);
|
return ret);
|
||||||
@ -2403,14 +2415,54 @@ static int vega20_force_dpm_lowest(struct pp_hwmgr *hwmgr)
|
|||||||
|
|
||||||
static int vega20_unforce_dpm_levels(struct pp_hwmgr *hwmgr)
|
static int vega20_unforce_dpm_levels(struct pp_hwmgr *hwmgr)
|
||||||
{
|
{
|
||||||
|
struct vega20_hwmgr *data =
|
||||||
|
(struct vega20_hwmgr *)(hwmgr->backend);
|
||||||
|
uint32_t soft_min_level, soft_max_level;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
ret = vega20_upload_dpm_min_level(hwmgr, 0xFFFFFFFF);
|
/* gfxclk soft min/max settings */
|
||||||
|
soft_min_level =
|
||||||
|
vega20_find_lowest_dpm_level(&(data->dpm_table.gfx_table));
|
||||||
|
soft_max_level =
|
||||||
|
vega20_find_highest_dpm_level(&(data->dpm_table.gfx_table));
|
||||||
|
|
||||||
|
data->dpm_table.gfx_table.dpm_state.soft_min_level =
|
||||||
|
data->dpm_table.gfx_table.dpm_levels[soft_min_level].value;
|
||||||
|
data->dpm_table.gfx_table.dpm_state.soft_max_level =
|
||||||
|
data->dpm_table.gfx_table.dpm_levels[soft_max_level].value;
|
||||||
|
|
||||||
|
/* uclk soft min/max settings */
|
||||||
|
soft_min_level =
|
||||||
|
vega20_find_lowest_dpm_level(&(data->dpm_table.mem_table));
|
||||||
|
soft_max_level =
|
||||||
|
vega20_find_highest_dpm_level(&(data->dpm_table.mem_table));
|
||||||
|
|
||||||
|
data->dpm_table.mem_table.dpm_state.soft_min_level =
|
||||||
|
data->dpm_table.mem_table.dpm_levels[soft_min_level].value;
|
||||||
|
data->dpm_table.mem_table.dpm_state.soft_max_level =
|
||||||
|
data->dpm_table.mem_table.dpm_levels[soft_max_level].value;
|
||||||
|
|
||||||
|
/* socclk soft min/max settings */
|
||||||
|
soft_min_level =
|
||||||
|
vega20_find_lowest_dpm_level(&(data->dpm_table.soc_table));
|
||||||
|
soft_max_level =
|
||||||
|
vega20_find_highest_dpm_level(&(data->dpm_table.soc_table));
|
||||||
|
|
||||||
|
data->dpm_table.soc_table.dpm_state.soft_min_level =
|
||||||
|
data->dpm_table.soc_table.dpm_levels[soft_min_level].value;
|
||||||
|
data->dpm_table.soc_table.dpm_state.soft_max_level =
|
||||||
|
data->dpm_table.soc_table.dpm_levels[soft_max_level].value;
|
||||||
|
|
||||||
|
ret = vega20_upload_dpm_min_level(hwmgr, FEATURE_DPM_GFXCLK_MASK |
|
||||||
|
FEATURE_DPM_UCLK_MASK |
|
||||||
|
FEATURE_DPM_SOCCLK_MASK);
|
||||||
PP_ASSERT_WITH_CODE(!ret,
|
PP_ASSERT_WITH_CODE(!ret,
|
||||||
"Failed to upload DPM Bootup Levels!",
|
"Failed to upload DPM Bootup Levels!",
|
||||||
return ret);
|
return ret);
|
||||||
|
|
||||||
ret = vega20_upload_dpm_max_level(hwmgr, 0xFFFFFFFF);
|
ret = vega20_upload_dpm_max_level(hwmgr, FEATURE_DPM_GFXCLK_MASK |
|
||||||
|
FEATURE_DPM_UCLK_MASK |
|
||||||
|
FEATURE_DPM_SOCCLK_MASK);
|
||||||
PP_ASSERT_WITH_CODE(!ret,
|
PP_ASSERT_WITH_CODE(!ret,
|
||||||
"Failed to upload DPM Max Levels!",
|
"Failed to upload DPM Max Levels!",
|
||||||
return ret);
|
return ret);
|
||||||
|
@ -3050,6 +3050,7 @@ static int vega20_get_fan_speed_percent(struct smu_context *smu,
|
|||||||
|
|
||||||
static int vega20_get_gpu_power(struct smu_context *smu, uint32_t *value)
|
static int vega20_get_gpu_power(struct smu_context *smu, uint32_t *value)
|
||||||
{
|
{
|
||||||
|
uint32_t smu_version;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
SmuMetrics_t metrics;
|
SmuMetrics_t metrics;
|
||||||
|
|
||||||
@ -3060,6 +3061,14 @@ static int vega20_get_gpu_power(struct smu_context *smu, uint32_t *value)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
ret = smu_get_smc_version(smu, NULL, &smu_version);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
/* For the 40.46 release, they changed the value name */
|
||||||
|
if (smu_version == 0x282e00)
|
||||||
|
*value = metrics.AverageSocketPower << 8;
|
||||||
|
else
|
||||||
*value = metrics.CurrSocketPower << 8;
|
*value = metrics.CurrSocketPower << 8;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -127,7 +127,7 @@ static int komeda_parse_pipe_dt(struct komeda_dev *mdev, struct device_node *np)
|
|||||||
pipe->of_output_port =
|
pipe->of_output_port =
|
||||||
of_graph_get_port_by_id(np, KOMEDA_OF_PORT_OUTPUT);
|
of_graph_get_port_by_id(np, KOMEDA_OF_PORT_OUTPUT);
|
||||||
|
|
||||||
pipe->of_node = np;
|
pipe->of_node = of_node_get(np);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
#include <drm/drm_gem_cma_helper.h>
|
#include <drm/drm_gem_cma_helper.h>
|
||||||
#include <drm/drm_gem_framebuffer_helper.h>
|
#include <drm/drm_gem_framebuffer_helper.h>
|
||||||
#include <drm/drm_irq.h>
|
#include <drm/drm_irq.h>
|
||||||
#include <drm/drm_vblank.h>
|
|
||||||
#include <drm/drm_probe_helper.h>
|
#include <drm/drm_probe_helper.h>
|
||||||
|
#include <drm/drm_vblank.h>
|
||||||
|
|
||||||
#include "komeda_dev.h"
|
#include "komeda_dev.h"
|
||||||
#include "komeda_framebuffer.h"
|
#include "komeda_framebuffer.h"
|
||||||
@ -147,7 +147,6 @@ static int komeda_crtc_normalize_zpos(struct drm_crtc *crtc,
|
|||||||
struct komeda_crtc_state *kcrtc_st = to_kcrtc_st(crtc_st);
|
struct komeda_crtc_state *kcrtc_st = to_kcrtc_st(crtc_st);
|
||||||
struct komeda_plane_state *kplane_st;
|
struct komeda_plane_state *kplane_st;
|
||||||
struct drm_plane_state *plane_st;
|
struct drm_plane_state *plane_st;
|
||||||
struct drm_framebuffer *fb;
|
|
||||||
struct drm_plane *plane;
|
struct drm_plane *plane;
|
||||||
struct list_head zorder_list;
|
struct list_head zorder_list;
|
||||||
int order = 0, err;
|
int order = 0, err;
|
||||||
@ -173,7 +172,6 @@ static int komeda_crtc_normalize_zpos(struct drm_crtc *crtc,
|
|||||||
|
|
||||||
list_for_each_entry(kplane_st, &zorder_list, zlist_node) {
|
list_for_each_entry(kplane_st, &zorder_list, zlist_node) {
|
||||||
plane_st = &kplane_st->base;
|
plane_st = &kplane_st->base;
|
||||||
fb = plane_st->fb;
|
|
||||||
plane = plane_st->plane;
|
plane = plane_st->plane;
|
||||||
|
|
||||||
plane_st->normalized_zpos = order++;
|
plane_st->normalized_zpos = order++;
|
||||||
@ -206,7 +204,7 @@ static int komeda_kms_check(struct drm_device *dev,
|
|||||||
struct drm_atomic_state *state)
|
struct drm_atomic_state *state)
|
||||||
{
|
{
|
||||||
struct drm_crtc *crtc;
|
struct drm_crtc *crtc;
|
||||||
struct drm_crtc_state *old_crtc_st, *new_crtc_st;
|
struct drm_crtc_state *new_crtc_st;
|
||||||
int i, err;
|
int i, err;
|
||||||
|
|
||||||
err = drm_atomic_helper_check_modeset(dev, state);
|
err = drm_atomic_helper_check_modeset(dev, state);
|
||||||
@ -217,7 +215,7 @@ static int komeda_kms_check(struct drm_device *dev,
|
|||||||
* so need to add all affected_planes (even unchanged) to
|
* so need to add all affected_planes (even unchanged) to
|
||||||
* drm_atomic_state.
|
* drm_atomic_state.
|
||||||
*/
|
*/
|
||||||
for_each_oldnew_crtc_in_state(state, crtc, old_crtc_st, new_crtc_st, i) {
|
for_each_new_crtc_in_state(state, crtc, new_crtc_st, i) {
|
||||||
err = drm_atomic_add_affected_planes(state, crtc);
|
err = drm_atomic_add_affected_planes(state, crtc);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
@ -308,11 +306,11 @@ struct komeda_kms_dev *komeda_kms_attach(struct komeda_dev *mdev)
|
|||||||
komeda_kms_irq_handler, IRQF_SHARED,
|
komeda_kms_irq_handler, IRQF_SHARED,
|
||||||
drm->driver->name, drm);
|
drm->driver->name, drm);
|
||||||
if (err)
|
if (err)
|
||||||
goto cleanup_mode_config;
|
goto free_component_binding;
|
||||||
|
|
||||||
err = mdev->funcs->enable_irq(mdev);
|
err = mdev->funcs->enable_irq(mdev);
|
||||||
if (err)
|
if (err)
|
||||||
goto cleanup_mode_config;
|
goto free_component_binding;
|
||||||
|
|
||||||
drm->irq_enabled = true;
|
drm->irq_enabled = true;
|
||||||
|
|
||||||
@ -320,15 +318,21 @@ struct komeda_kms_dev *komeda_kms_attach(struct komeda_dev *mdev)
|
|||||||
|
|
||||||
err = drm_dev_register(drm, 0);
|
err = drm_dev_register(drm, 0);
|
||||||
if (err)
|
if (err)
|
||||||
goto cleanup_mode_config;
|
goto free_interrupts;
|
||||||
|
|
||||||
return kms;
|
return kms;
|
||||||
|
|
||||||
cleanup_mode_config:
|
free_interrupts:
|
||||||
drm_kms_helper_poll_fini(drm);
|
drm_kms_helper_poll_fini(drm);
|
||||||
drm->irq_enabled = false;
|
drm->irq_enabled = false;
|
||||||
|
mdev->funcs->disable_irq(mdev);
|
||||||
|
free_component_binding:
|
||||||
|
component_unbind_all(mdev->dev, drm);
|
||||||
|
cleanup_mode_config:
|
||||||
drm_mode_config_cleanup(drm);
|
drm_mode_config_cleanup(drm);
|
||||||
komeda_kms_cleanup_private_objs(kms);
|
komeda_kms_cleanup_private_objs(kms);
|
||||||
|
drm->dev_private = NULL;
|
||||||
|
drm_dev_put(drm);
|
||||||
free_kms:
|
free_kms:
|
||||||
kfree(kms);
|
kfree(kms);
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
@ -339,13 +343,14 @@ void komeda_kms_detach(struct komeda_kms_dev *kms)
|
|||||||
struct drm_device *drm = &kms->base;
|
struct drm_device *drm = &kms->base;
|
||||||
struct komeda_dev *mdev = drm->dev_private;
|
struct komeda_dev *mdev = drm->dev_private;
|
||||||
|
|
||||||
drm->irq_enabled = false;
|
|
||||||
mdev->funcs->disable_irq(mdev);
|
|
||||||
drm_dev_unregister(drm);
|
drm_dev_unregister(drm);
|
||||||
drm_kms_helper_poll_fini(drm);
|
drm_kms_helper_poll_fini(drm);
|
||||||
|
drm_atomic_helper_shutdown(drm);
|
||||||
|
drm->irq_enabled = false;
|
||||||
|
mdev->funcs->disable_irq(mdev);
|
||||||
component_unbind_all(mdev->dev, drm);
|
component_unbind_all(mdev->dev, drm);
|
||||||
komeda_kms_cleanup_private_objs(kms);
|
|
||||||
drm_mode_config_cleanup(drm);
|
drm_mode_config_cleanup(drm);
|
||||||
|
komeda_kms_cleanup_private_objs(kms);
|
||||||
drm->dev_private = NULL;
|
drm->dev_private = NULL;
|
||||||
drm_dev_put(drm);
|
drm_dev_put(drm);
|
||||||
}
|
}
|
||||||
|
@ -480,6 +480,7 @@ void komeda_pipeline_dump_register(struct komeda_pipeline *pipe,
|
|||||||
struct seq_file *sf);
|
struct seq_file *sf);
|
||||||
|
|
||||||
/* component APIs */
|
/* component APIs */
|
||||||
|
extern __printf(10, 11)
|
||||||
struct komeda_component *
|
struct komeda_component *
|
||||||
komeda_component_add(struct komeda_pipeline *pipe,
|
komeda_component_add(struct komeda_pipeline *pipe,
|
||||||
size_t comp_sz, u32 id, u32 hw_id,
|
size_t comp_sz, u32 id, u32 hw_id,
|
||||||
|
@ -148,7 +148,7 @@ static int komeda_wb_connector_add(struct komeda_kms_dev *kms,
|
|||||||
if (!kcrtc->master->wb_layer)
|
if (!kcrtc->master->wb_layer)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
kwb_conn = kzalloc(sizeof(*wb_conn), GFP_KERNEL);
|
kwb_conn = kzalloc(sizeof(*kwb_conn), GFP_KERNEL);
|
||||||
if (!kwb_conn)
|
if (!kwb_conn)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -539,6 +539,14 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
|
|||||||
|
|
||||||
intel_attach_force_audio_property(connector);
|
intel_attach_force_audio_property(connector);
|
||||||
intel_attach_broadcast_rgb_property(connector);
|
intel_attach_broadcast_rgb_property(connector);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Reuse the prop from the SST connector because we're
|
||||||
|
* not allowed to create new props after device registration.
|
||||||
|
*/
|
||||||
|
connector->max_bpc_property =
|
||||||
|
intel_dp->attached_connector->base.max_bpc_property;
|
||||||
|
if (connector->max_bpc_property)
|
||||||
drm_connector_attach_max_bpc_property(connector, 6, 12);
|
drm_connector_attach_max_bpc_property(connector, 6, 12);
|
||||||
|
|
||||||
return connector;
|
return connector;
|
||||||
|
@ -541,7 +541,7 @@ static void intel_configure_pps_for_dsc_encoder(struct intel_encoder *encoder,
|
|||||||
pps_val |= DSC_PIC_HEIGHT(vdsc_cfg->pic_height) |
|
pps_val |= DSC_PIC_HEIGHT(vdsc_cfg->pic_height) |
|
||||||
DSC_PIC_WIDTH(vdsc_cfg->pic_width / num_vdsc_instances);
|
DSC_PIC_WIDTH(vdsc_cfg->pic_width / num_vdsc_instances);
|
||||||
DRM_INFO("PPS2 = 0x%08x\n", pps_val);
|
DRM_INFO("PPS2 = 0x%08x\n", pps_val);
|
||||||
if (encoder->type == INTEL_OUTPUT_EDP) {
|
if (cpu_transcoder == TRANSCODER_EDP) {
|
||||||
I915_WRITE(DSCA_PICTURE_PARAMETER_SET_2, pps_val);
|
I915_WRITE(DSCA_PICTURE_PARAMETER_SET_2, pps_val);
|
||||||
/*
|
/*
|
||||||
* If 2 VDSC instances are needed, configure PPS for second
|
* If 2 VDSC instances are needed, configure PPS for second
|
||||||
|
@ -1598,6 +1598,12 @@ static int i915_driver_init_hw(struct drm_i915_private *dev_priv)
|
|||||||
|
|
||||||
pci_set_master(pdev);
|
pci_set_master(pdev);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We don't have a max segment size, so set it to the max so sg's
|
||||||
|
* debugging layer doesn't complain
|
||||||
|
*/
|
||||||
|
dma_set_max_seg_size(&pdev->dev, UINT_MAX);
|
||||||
|
|
||||||
/* overlay on gen2 is broken and can't address above 1G */
|
/* overlay on gen2 is broken and can't address above 1G */
|
||||||
if (IS_GEN(dev_priv, 2)) {
|
if (IS_GEN(dev_priv, 2)) {
|
||||||
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(30));
|
ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(30));
|
||||||
|
@ -101,6 +101,9 @@ static struct _balloon_info_ bl_info;
|
|||||||
static void vgt_deballoon_space(struct i915_ggtt *ggtt,
|
static void vgt_deballoon_space(struct i915_ggtt *ggtt,
|
||||||
struct drm_mm_node *node)
|
struct drm_mm_node *node)
|
||||||
{
|
{
|
||||||
|
if (!drm_mm_node_allocated(node))
|
||||||
|
return;
|
||||||
|
|
||||||
DRM_DEBUG_DRIVER("deballoon space: range [0x%llx - 0x%llx] %llu KiB.\n",
|
DRM_DEBUG_DRIVER("deballoon space: range [0x%llx - 0x%llx] %llu KiB.\n",
|
||||||
node->start,
|
node->start,
|
||||||
node->start + node->size,
|
node->start + node->size,
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
* Author: Archit Taneja <archit@ti.com>
|
* Author: Archit Taneja <archit@ti.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <linux/bitops.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
@ -20,7 +21,8 @@ int omapdss_device_init_output(struct omap_dss_device *out)
|
|||||||
{
|
{
|
||||||
struct device_node *remote_node;
|
struct device_node *remote_node;
|
||||||
|
|
||||||
remote_node = of_graph_get_remote_node(out->dev->of_node, 0, 0);
|
remote_node = of_graph_get_remote_node(out->dev->of_node,
|
||||||
|
ffs(out->of_ports) - 1, 0);
|
||||||
if (!remote_node) {
|
if (!remote_node) {
|
||||||
dev_dbg(out->dev, "failed to find video sink\n");
|
dev_dbg(out->dev, "failed to find video sink\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -59,6 +59,11 @@ module_param_named(num_heads, qxl_num_crtc, int, 0400);
|
|||||||
static struct drm_driver qxl_driver;
|
static struct drm_driver qxl_driver;
|
||||||
static struct pci_driver qxl_pci_driver;
|
static struct pci_driver qxl_pci_driver;
|
||||||
|
|
||||||
|
static bool is_vga(struct pci_dev *pdev)
|
||||||
|
{
|
||||||
|
return pdev->class == PCI_CLASS_DISPLAY_VGA << 8;
|
||||||
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||||
{
|
{
|
||||||
@ -83,9 +88,17 @@ qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto disable_pci;
|
goto disable_pci;
|
||||||
|
|
||||||
|
if (is_vga(pdev)) {
|
||||||
|
ret = vga_get_interruptible(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
|
if (ret) {
|
||||||
|
DRM_ERROR("can't get legacy vga ioports\n");
|
||||||
|
goto disable_pci;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ret = qxl_device_init(qdev, &qxl_driver, pdev);
|
ret = qxl_device_init(qdev, &qxl_driver, pdev);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto disable_pci;
|
goto put_vga;
|
||||||
|
|
||||||
ret = qxl_modeset_init(qdev);
|
ret = qxl_modeset_init(qdev);
|
||||||
if (ret)
|
if (ret)
|
||||||
@ -105,6 +118,9 @@ qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
qxl_modeset_fini(qdev);
|
qxl_modeset_fini(qdev);
|
||||||
unload:
|
unload:
|
||||||
qxl_device_fini(qdev);
|
qxl_device_fini(qdev);
|
||||||
|
put_vga:
|
||||||
|
if (is_vga(pdev))
|
||||||
|
vga_put(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
disable_pci:
|
disable_pci:
|
||||||
pci_disable_device(pdev);
|
pci_disable_device(pdev);
|
||||||
free_dev:
|
free_dev:
|
||||||
@ -122,6 +138,8 @@ qxl_pci_remove(struct pci_dev *pdev)
|
|||||||
|
|
||||||
qxl_modeset_fini(qdev);
|
qxl_modeset_fini(qdev);
|
||||||
qxl_device_fini(qdev);
|
qxl_device_fini(qdev);
|
||||||
|
if (is_vga(pdev))
|
||||||
|
vga_put(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
|
|
||||||
dev->dev_private = NULL;
|
dev->dev_private = NULL;
|
||||||
kfree(qdev);
|
kfree(qdev);
|
||||||
|
@ -204,6 +204,7 @@ int virtio_gpu_object_get_sg_table(struct virtio_gpu_device *qdev,
|
|||||||
.interruptible = false,
|
.interruptible = false,
|
||||||
.no_wait_gpu = false
|
.no_wait_gpu = false
|
||||||
};
|
};
|
||||||
|
size_t max_segment;
|
||||||
|
|
||||||
/* wtf swapping */
|
/* wtf swapping */
|
||||||
if (bo->pages)
|
if (bo->pages)
|
||||||
@ -215,8 +216,13 @@ int virtio_gpu_object_get_sg_table(struct virtio_gpu_device *qdev,
|
|||||||
if (!bo->pages)
|
if (!bo->pages)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
ret = sg_alloc_table_from_pages(bo->pages, pages, nr_pages, 0,
|
max_segment = virtio_max_dma_size(qdev->vdev);
|
||||||
nr_pages << PAGE_SHIFT, GFP_KERNEL);
|
max_segment &= PAGE_MASK;
|
||||||
|
if (max_segment > SCATTERLIST_MAX_SEGMENT)
|
||||||
|
max_segment = SCATTERLIST_MAX_SEGMENT;
|
||||||
|
ret = __sg_alloc_table_from_pages(bo->pages, pages, nr_pages, 0,
|
||||||
|
nr_pages << PAGE_SHIFT,
|
||||||
|
max_segment, GFP_KERNEL);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto out;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -164,6 +164,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = {
|
|||||||
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa1a6),
|
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa1a6),
|
||||||
.driver_data = (kernel_ulong_t)0,
|
.driver_data = (kernel_ulong_t)0,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
/* Lewisburg PCH */
|
||||||
|
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa226),
|
||||||
|
.driver_data = (kernel_ulong_t)0,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
/* Gemini Lake */
|
/* Gemini Lake */
|
||||||
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x318e),
|
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x318e),
|
||||||
@ -199,6 +204,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = {
|
|||||||
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x45c5),
|
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x45c5),
|
||||||
.driver_data = (kernel_ulong_t)&intel_th_2x,
|
.driver_data = (kernel_ulong_t)&intel_th_2x,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
/* Tiger Lake PCH */
|
||||||
|
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa0a6),
|
||||||
|
.driver_data = (kernel_ulong_t)&intel_th_2x,
|
||||||
|
},
|
||||||
{ 0 },
|
{ 0 },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1276,7 +1276,6 @@ int stm_source_register_device(struct device *parent,
|
|||||||
|
|
||||||
err:
|
err:
|
||||||
put_device(&src->dev);
|
put_device(&src->dev);
|
||||||
kfree(src);
|
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
@ -790,7 +790,10 @@ static int bcm_iproc_i2c_xfer(struct i2c_adapter *adapter,
|
|||||||
|
|
||||||
static uint32_t bcm_iproc_i2c_functionality(struct i2c_adapter *adap)
|
static uint32_t bcm_iproc_i2c_functionality(struct i2c_adapter *adap)
|
||||||
{
|
{
|
||||||
u32 val = I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
u32 val;
|
||||||
|
|
||||||
|
/* We do not support the SMBUS Quick command */
|
||||||
|
val = I2C_FUNC_I2C | (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK);
|
||||||
|
|
||||||
if (adap->algo->reg_slave)
|
if (adap->algo->reg_slave)
|
||||||
val |= I2C_FUNC_SLAVE;
|
val |= I2C_FUNC_SLAVE;
|
||||||
|
@ -94,6 +94,7 @@ static int i2c_dw_unreg_slave(struct i2c_client *slave)
|
|||||||
|
|
||||||
dev->disable_int(dev);
|
dev->disable_int(dev);
|
||||||
dev->disable(dev);
|
dev->disable(dev);
|
||||||
|
synchronize_irq(dev->irq);
|
||||||
dev->slave = NULL;
|
dev->slave = NULL;
|
||||||
pm_runtime_put(dev->dev);
|
pm_runtime_put(dev->dev);
|
||||||
|
|
||||||
|
@ -1194,19 +1194,28 @@ static acpi_status check_acpi_smo88xx_device(acpi_handle obj_handle,
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
status = acpi_get_object_info(obj_handle, &info);
|
status = acpi_get_object_info(obj_handle, &info);
|
||||||
if (!ACPI_SUCCESS(status) || !(info->valid & ACPI_VALID_HID))
|
if (ACPI_FAILURE(status))
|
||||||
return AE_OK;
|
return AE_OK;
|
||||||
|
|
||||||
|
if (!(info->valid & ACPI_VALID_HID))
|
||||||
|
goto smo88xx_not_found;
|
||||||
|
|
||||||
hid = info->hardware_id.string;
|
hid = info->hardware_id.string;
|
||||||
if (!hid)
|
if (!hid)
|
||||||
return AE_OK;
|
goto smo88xx_not_found;
|
||||||
|
|
||||||
i = match_string(acpi_smo8800_ids, ARRAY_SIZE(acpi_smo8800_ids), hid);
|
i = match_string(acpi_smo8800_ids, ARRAY_SIZE(acpi_smo8800_ids), hid);
|
||||||
if (i < 0)
|
if (i < 0)
|
||||||
return AE_OK;
|
goto smo88xx_not_found;
|
||||||
|
|
||||||
|
kfree(info);
|
||||||
|
|
||||||
*((bool *)return_value) = true;
|
*((bool *)return_value) = true;
|
||||||
return AE_CTRL_TERMINATE;
|
return AE_CTRL_TERMINATE;
|
||||||
|
|
||||||
|
smo88xx_not_found:
|
||||||
|
kfree(info);
|
||||||
|
return AE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool is_dell_system_with_lis3lv02d(void)
|
static bool is_dell_system_with_lis3lv02d(void)
|
||||||
|
@ -234,6 +234,10 @@ static const struct i2c_adapter_quirks mt7622_i2c_quirks = {
|
|||||||
.max_num_msgs = 255,
|
.max_num_msgs = 255,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct i2c_adapter_quirks mt8183_i2c_quirks = {
|
||||||
|
.flags = I2C_AQ_NO_ZERO_LEN,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct mtk_i2c_compatible mt2712_compat = {
|
static const struct mtk_i2c_compatible mt2712_compat = {
|
||||||
.regs = mt_i2c_regs_v1,
|
.regs = mt_i2c_regs_v1,
|
||||||
.pmic_i2c = 0,
|
.pmic_i2c = 0,
|
||||||
@ -298,6 +302,7 @@ static const struct mtk_i2c_compatible mt8173_compat = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct mtk_i2c_compatible mt8183_compat = {
|
static const struct mtk_i2c_compatible mt8183_compat = {
|
||||||
|
.quirks = &mt8183_i2c_quirks,
|
||||||
.regs = mt_i2c_regs_v2,
|
.regs = mt_i2c_regs_v2,
|
||||||
.pmic_i2c = 0,
|
.pmic_i2c = 0,
|
||||||
.dcm = 0,
|
.dcm = 0,
|
||||||
@ -870,6 +875,10 @@ static irqreturn_t mtk_i2c_irq(int irqno, void *dev_id)
|
|||||||
|
|
||||||
static u32 mtk_i2c_functionality(struct i2c_adapter *adap)
|
static u32 mtk_i2c_functionality(struct i2c_adapter *adap)
|
||||||
{
|
{
|
||||||
|
if (adap->quirks->flags & I2C_AQ_NO_ZERO_LEN)
|
||||||
|
return I2C_FUNC_I2C |
|
||||||
|
(I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK);
|
||||||
|
else
|
||||||
return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@
|
|||||||
#define SB800_PIIX4_PORT_IDX_MASK 0x06
|
#define SB800_PIIX4_PORT_IDX_MASK 0x06
|
||||||
#define SB800_PIIX4_PORT_IDX_SHIFT 1
|
#define SB800_PIIX4_PORT_IDX_SHIFT 1
|
||||||
|
|
||||||
/* On kerncz, SmBus0Sel is at bit 20:19 of PMx00 DecodeEn */
|
/* On kerncz and Hudson2, SmBus0Sel is at bit 20:19 of PMx00 DecodeEn */
|
||||||
#define SB800_PIIX4_PORT_IDX_KERNCZ 0x02
|
#define SB800_PIIX4_PORT_IDX_KERNCZ 0x02
|
||||||
#define SB800_PIIX4_PORT_IDX_MASK_KERNCZ 0x18
|
#define SB800_PIIX4_PORT_IDX_MASK_KERNCZ 0x18
|
||||||
#define SB800_PIIX4_PORT_IDX_SHIFT_KERNCZ 3
|
#define SB800_PIIX4_PORT_IDX_SHIFT_KERNCZ 3
|
||||||
@ -358,18 +358,16 @@ static int piix4_setup_sb800(struct pci_dev *PIIX4_dev,
|
|||||||
/* Find which register is used for port selection */
|
/* Find which register is used for port selection */
|
||||||
if (PIIX4_dev->vendor == PCI_VENDOR_ID_AMD ||
|
if (PIIX4_dev->vendor == PCI_VENDOR_ID_AMD ||
|
||||||
PIIX4_dev->vendor == PCI_VENDOR_ID_HYGON) {
|
PIIX4_dev->vendor == PCI_VENDOR_ID_HYGON) {
|
||||||
switch (PIIX4_dev->device) {
|
if (PIIX4_dev->device == PCI_DEVICE_ID_AMD_KERNCZ_SMBUS ||
|
||||||
case PCI_DEVICE_ID_AMD_KERNCZ_SMBUS:
|
(PIIX4_dev->device == PCI_DEVICE_ID_AMD_HUDSON2_SMBUS &&
|
||||||
|
PIIX4_dev->revision >= 0x1F)) {
|
||||||
piix4_port_sel_sb800 = SB800_PIIX4_PORT_IDX_KERNCZ;
|
piix4_port_sel_sb800 = SB800_PIIX4_PORT_IDX_KERNCZ;
|
||||||
piix4_port_mask_sb800 = SB800_PIIX4_PORT_IDX_MASK_KERNCZ;
|
piix4_port_mask_sb800 = SB800_PIIX4_PORT_IDX_MASK_KERNCZ;
|
||||||
piix4_port_shift_sb800 = SB800_PIIX4_PORT_IDX_SHIFT_KERNCZ;
|
piix4_port_shift_sb800 = SB800_PIIX4_PORT_IDX_SHIFT_KERNCZ;
|
||||||
break;
|
} else {
|
||||||
case PCI_DEVICE_ID_AMD_HUDSON2_SMBUS:
|
|
||||||
default:
|
|
||||||
piix4_port_sel_sb800 = SB800_PIIX4_PORT_IDX_ALT;
|
piix4_port_sel_sb800 = SB800_PIIX4_PORT_IDX_ALT;
|
||||||
piix4_port_mask_sb800 = SB800_PIIX4_PORT_IDX_MASK;
|
piix4_port_mask_sb800 = SB800_PIIX4_PORT_IDX_MASK;
|
||||||
piix4_port_shift_sb800 = SB800_PIIX4_PORT_IDX_SHIFT;
|
piix4_port_shift_sb800 = SB800_PIIX4_PORT_IDX_SHIFT;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!request_muxed_region(SB800_PIIX4_SMB_IDX, 2,
|
if (!request_muxed_region(SB800_PIIX4_SMB_IDX, 2,
|
||||||
|
@ -832,7 +832,7 @@ EXPORT_SYMBOL_GPL(i2c_new_device);
|
|||||||
*/
|
*/
|
||||||
void i2c_unregister_device(struct i2c_client *client)
|
void i2c_unregister_device(struct i2c_client *client)
|
||||||
{
|
{
|
||||||
if (!client)
|
if (IS_ERR_OR_NULL(client))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (client->dev.of_node) {
|
if (client->dev.of_node) {
|
||||||
|
@ -1962,6 +1962,10 @@ int siw_create_listen(struct iw_cm_id *id, int backlog)
|
|||||||
struct sockaddr_in s_laddr, *s_raddr;
|
struct sockaddr_in s_laddr, *s_raddr;
|
||||||
const struct in_ifaddr *ifa;
|
const struct in_ifaddr *ifa;
|
||||||
|
|
||||||
|
if (!in_dev) {
|
||||||
|
rv = -ENODEV;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
memcpy(&s_laddr, &id->local_addr, sizeof(s_laddr));
|
memcpy(&s_laddr, &id->local_addr, sizeof(s_laddr));
|
||||||
s_raddr = (struct sockaddr_in *)&id->remote_addr;
|
s_raddr = (struct sockaddr_in *)&id->remote_addr;
|
||||||
|
|
||||||
@ -1991,22 +1995,27 @@ int siw_create_listen(struct iw_cm_id *id, int backlog)
|
|||||||
struct sockaddr_in6 *s_laddr = &to_sockaddr_in6(id->local_addr),
|
struct sockaddr_in6 *s_laddr = &to_sockaddr_in6(id->local_addr),
|
||||||
*s_raddr = &to_sockaddr_in6(id->remote_addr);
|
*s_raddr = &to_sockaddr_in6(id->remote_addr);
|
||||||
|
|
||||||
|
if (!in6_dev) {
|
||||||
|
rv = -ENODEV;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
siw_dbg(id->device,
|
siw_dbg(id->device,
|
||||||
"laddr %pI6:%d, raddr %pI6:%d\n",
|
"laddr %pI6:%d, raddr %pI6:%d\n",
|
||||||
&s_laddr->sin6_addr, ntohs(s_laddr->sin6_port),
|
&s_laddr->sin6_addr, ntohs(s_laddr->sin6_port),
|
||||||
&s_raddr->sin6_addr, ntohs(s_raddr->sin6_port));
|
&s_raddr->sin6_addr, ntohs(s_raddr->sin6_port));
|
||||||
|
|
||||||
read_lock_bh(&in6_dev->lock);
|
rtnl_lock();
|
||||||
list_for_each_entry(ifp, &in6_dev->addr_list, if_list) {
|
list_for_each_entry(ifp, &in6_dev->addr_list, if_list) {
|
||||||
struct sockaddr_in6 bind_addr;
|
if (ifp->flags & (IFA_F_TENTATIVE | IFA_F_DEPRECATED))
|
||||||
|
continue;
|
||||||
if (ipv6_addr_any(&s_laddr->sin6_addr) ||
|
if (ipv6_addr_any(&s_laddr->sin6_addr) ||
|
||||||
ipv6_addr_equal(&s_laddr->sin6_addr, &ifp->addr)) {
|
ipv6_addr_equal(&s_laddr->sin6_addr, &ifp->addr)) {
|
||||||
bind_addr.sin6_family = AF_INET6;
|
struct sockaddr_in6 bind_addr = {
|
||||||
bind_addr.sin6_port = s_laddr->sin6_port;
|
.sin6_family = AF_INET6,
|
||||||
bind_addr.sin6_flowinfo = 0;
|
.sin6_port = s_laddr->sin6_port,
|
||||||
bind_addr.sin6_addr = ifp->addr;
|
.sin6_flowinfo = 0,
|
||||||
bind_addr.sin6_scope_id = dev->ifindex;
|
.sin6_addr = ifp->addr,
|
||||||
|
.sin6_scope_id = dev->ifindex };
|
||||||
|
|
||||||
rv = siw_listen_address(id, backlog,
|
rv = siw_listen_address(id, backlog,
|
||||||
(struct sockaddr *)&bind_addr,
|
(struct sockaddr *)&bind_addr,
|
||||||
@ -2015,12 +2024,12 @@ int siw_create_listen(struct iw_cm_id *id, int backlog)
|
|||||||
listeners++;
|
listeners++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
read_unlock_bh(&in6_dev->lock);
|
rtnl_unlock();
|
||||||
|
|
||||||
in6_dev_put(in6_dev);
|
in6_dev_put(in6_dev);
|
||||||
} else {
|
} else {
|
||||||
return -EAFNOSUPPORT;
|
rv = -EAFNOSUPPORT;
|
||||||
}
|
}
|
||||||
|
out:
|
||||||
if (listeners)
|
if (listeners)
|
||||||
rv = 0;
|
rv = 0;
|
||||||
else if (!rv)
|
else if (!rv)
|
||||||
|
@ -729,7 +729,7 @@ static int rk808_remove(struct i2c_client *client)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rk8xx_suspend(struct device *dev)
|
static int __maybe_unused rk8xx_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client);
|
struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client);
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
@ -749,7 +749,7 @@ static int rk8xx_suspend(struct device *dev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rk8xx_resume(struct device *dev)
|
static int __maybe_unused rk8xx_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client);
|
struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client);
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
@ -768,7 +768,7 @@ static int rk8xx_resume(struct device *dev)
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
SIMPLE_DEV_PM_OPS(rk8xx_pm_ops, rk8xx_suspend, rk8xx_resume);
|
static SIMPLE_DEV_PM_OPS(rk8xx_pm_ops, rk8xx_suspend, rk8xx_resume);
|
||||||
|
|
||||||
static struct i2c_driver rk808_i2c_driver = {
|
static struct i2c_driver rk808_i2c_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
|
@ -22,7 +22,7 @@ struct lkdtm_list {
|
|||||||
* recurse past the end of THREAD_SIZE by default.
|
* recurse past the end of THREAD_SIZE by default.
|
||||||
*/
|
*/
|
||||||
#if defined(CONFIG_FRAME_WARN) && (CONFIG_FRAME_WARN > 0)
|
#if defined(CONFIG_FRAME_WARN) && (CONFIG_FRAME_WARN > 0)
|
||||||
#define REC_STACK_SIZE (CONFIG_FRAME_WARN / 2)
|
#define REC_STACK_SIZE (_AC(CONFIG_FRAME_WARN, UL) / 2)
|
||||||
#else
|
#else
|
||||||
#define REC_STACK_SIZE (THREAD_SIZE / 8)
|
#define REC_STACK_SIZE (THREAD_SIZE / 8)
|
||||||
#endif
|
#endif
|
||||||
@ -91,7 +91,7 @@ void lkdtm_LOOP(void)
|
|||||||
|
|
||||||
void lkdtm_EXHAUST_STACK(void)
|
void lkdtm_EXHAUST_STACK(void)
|
||||||
{
|
{
|
||||||
pr_info("Calling function with %d frame size to depth %d ...\n",
|
pr_info("Calling function with %lu frame size to depth %d ...\n",
|
||||||
REC_STACK_SIZE, recur_count);
|
REC_STACK_SIZE, recur_count);
|
||||||
recursive_loop(recur_count);
|
recursive_loop(recur_count);
|
||||||
pr_info("FAIL: survived without exhausting stack?!\n");
|
pr_info("FAIL: survived without exhausting stack?!\n");
|
||||||
|
@ -81,6 +81,8 @@
|
|||||||
|
|
||||||
#define MEI_DEV_ID_ICP_LP 0x34E0 /* Ice Lake Point LP */
|
#define MEI_DEV_ID_ICP_LP 0x34E0 /* Ice Lake Point LP */
|
||||||
|
|
||||||
|
#define MEI_DEV_ID_TGP_LP 0xA0E0 /* Tiger Lake Point LP */
|
||||||
|
|
||||||
#define MEI_DEV_ID_MCC 0x4B70 /* Mule Creek Canyon (EHL) */
|
#define MEI_DEV_ID_MCC 0x4B70 /* Mule Creek Canyon (EHL) */
|
||||||
#define MEI_DEV_ID_MCC_4 0x4B75 /* Mule Creek Canyon 4 (EHL) */
|
#define MEI_DEV_ID_MCC_4 0x4B75 /* Mule Creek Canyon 4 (EHL) */
|
||||||
|
|
||||||
|
@ -98,6 +98,8 @@ static const struct pci_device_id mei_me_pci_tbl[] = {
|
|||||||
|
|
||||||
{MEI_PCI_DEVICE(MEI_DEV_ID_ICP_LP, MEI_ME_PCH12_CFG)},
|
{MEI_PCI_DEVICE(MEI_DEV_ID_ICP_LP, MEI_ME_PCH12_CFG)},
|
||||||
|
|
||||||
|
{MEI_PCI_DEVICE(MEI_DEV_ID_TGP_LP, MEI_ME_PCH12_CFG)},
|
||||||
|
|
||||||
{MEI_PCI_DEVICE(MEI_DEV_ID_MCC, MEI_ME_PCH12_CFG)},
|
{MEI_PCI_DEVICE(MEI_DEV_ID_MCC, MEI_ME_PCH12_CFG)},
|
||||||
{MEI_PCI_DEVICE(MEI_DEV_ID_MCC_4, MEI_ME_PCH8_CFG)},
|
{MEI_PCI_DEVICE(MEI_DEV_ID_MCC_4, MEI_ME_PCH8_CFG)},
|
||||||
|
|
||||||
|
@ -691,7 +691,6 @@ static int vmballoon_alloc_page_list(struct vmballoon *b,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (page) {
|
if (page) {
|
||||||
vmballoon_mark_page_offline(page, ctl->page_size);
|
|
||||||
/* Success. Add the page to the list and continue. */
|
/* Success. Add the page to the list and continue. */
|
||||||
list_add(&page->lru, &ctl->pages);
|
list_add(&page->lru, &ctl->pages);
|
||||||
continue;
|
continue;
|
||||||
@ -930,7 +929,6 @@ static void vmballoon_release_page_list(struct list_head *page_list,
|
|||||||
|
|
||||||
list_for_each_entry_safe(page, tmp, page_list, lru) {
|
list_for_each_entry_safe(page, tmp, page_list, lru) {
|
||||||
list_del(&page->lru);
|
list_del(&page->lru);
|
||||||
vmballoon_mark_page_online(page, page_size);
|
|
||||||
__free_pages(page, vmballoon_page_order(page_size));
|
__free_pages(page, vmballoon_page_order(page_size));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1005,6 +1003,7 @@ static void vmballoon_enqueue_page_list(struct vmballoon *b,
|
|||||||
enum vmballoon_page_size_type page_size)
|
enum vmballoon_page_size_type page_size)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
struct page *page;
|
||||||
|
|
||||||
if (page_size == VMW_BALLOON_4K_PAGE) {
|
if (page_size == VMW_BALLOON_4K_PAGE) {
|
||||||
balloon_page_list_enqueue(&b->b_dev_info, pages);
|
balloon_page_list_enqueue(&b->b_dev_info, pages);
|
||||||
@ -1014,6 +1013,11 @@ static void vmballoon_enqueue_page_list(struct vmballoon *b,
|
|||||||
* for the balloon compaction mechanism.
|
* for the balloon compaction mechanism.
|
||||||
*/
|
*/
|
||||||
spin_lock_irqsave(&b->b_dev_info.pages_lock, flags);
|
spin_lock_irqsave(&b->b_dev_info.pages_lock, flags);
|
||||||
|
|
||||||
|
list_for_each_entry(page, pages, lru) {
|
||||||
|
vmballoon_mark_page_offline(page, VMW_BALLOON_2M_PAGE);
|
||||||
|
}
|
||||||
|
|
||||||
list_splice_init(pages, &b->huge_pages);
|
list_splice_init(pages, &b->huge_pages);
|
||||||
__count_vm_events(BALLOON_INFLATE, *n_pages *
|
__count_vm_events(BALLOON_INFLATE, *n_pages *
|
||||||
vmballoon_page_in_frames(VMW_BALLOON_2M_PAGE));
|
vmballoon_page_in_frames(VMW_BALLOON_2M_PAGE));
|
||||||
@ -1056,6 +1060,8 @@ static void vmballoon_dequeue_page_list(struct vmballoon *b,
|
|||||||
/* 2MB pages */
|
/* 2MB pages */
|
||||||
spin_lock_irqsave(&b->b_dev_info.pages_lock, flags);
|
spin_lock_irqsave(&b->b_dev_info.pages_lock, flags);
|
||||||
list_for_each_entry_safe(page, tmp, &b->huge_pages, lru) {
|
list_for_each_entry_safe(page, tmp, &b->huge_pages, lru) {
|
||||||
|
vmballoon_mark_page_online(page, VMW_BALLOON_2M_PAGE);
|
||||||
|
|
||||||
list_move(&page->lru, pages);
|
list_move(&page->lru, pages);
|
||||||
if (++i == n_req_pages)
|
if (++i == n_req_pages)
|
||||||
break;
|
break;
|
||||||
|
@ -310,7 +310,8 @@ int vmci_dbell_host_context_notify(u32 src_cid, struct vmci_handle handle)
|
|||||||
|
|
||||||
entry = container_of(resource, struct dbell_entry, resource);
|
entry = container_of(resource, struct dbell_entry, resource);
|
||||||
if (entry->run_delayed) {
|
if (entry->run_delayed) {
|
||||||
schedule_work(&entry->work);
|
if (!schedule_work(&entry->work))
|
||||||
|
vmci_resource_put(resource);
|
||||||
} else {
|
} else {
|
||||||
entry->notify_cb(entry->client_data);
|
entry->notify_cb(entry->client_data);
|
||||||
vmci_resource_put(resource);
|
vmci_resource_put(resource);
|
||||||
@ -361,7 +362,8 @@ static void dbell_fire_entries(u32 notify_idx)
|
|||||||
atomic_read(&dbell->active) == 1) {
|
atomic_read(&dbell->active) == 1) {
|
||||||
if (dbell->run_delayed) {
|
if (dbell->run_delayed) {
|
||||||
vmci_resource_get(&dbell->resource);
|
vmci_resource_get(&dbell->resource);
|
||||||
schedule_work(&dbell->work);
|
if (!schedule_work(&dbell->work))
|
||||||
|
vmci_resource_put(&dbell->resource);
|
||||||
} else {
|
} else {
|
||||||
dbell->notify_cb(dbell->client_data);
|
dbell->notify_cb(dbell->client_data);
|
||||||
}
|
}
|
||||||
|
@ -1292,6 +1292,12 @@ int mmc_attach_sd(struct mmc_host *host)
|
|||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Some SD cards claims an out of spec VDD voltage range. Let's treat
|
||||||
|
* these bits as being in-valid and especially also bit7.
|
||||||
|
*/
|
||||||
|
ocr &= ~0x7FFF;
|
||||||
|
|
||||||
rocr = mmc_select_voltage(host, ocr);
|
rocr = mmc_select_voltage(host, ocr);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -369,6 +369,7 @@ static int sdhci_cdns_probe(struct platform_device *pdev)
|
|||||||
host->mmc_host_ops.execute_tuning = sdhci_cdns_execute_tuning;
|
host->mmc_host_ops.execute_tuning = sdhci_cdns_execute_tuning;
|
||||||
host->mmc_host_ops.hs400_enhanced_strobe =
|
host->mmc_host_ops.hs400_enhanced_strobe =
|
||||||
sdhci_cdns_hs400_enhanced_strobe;
|
sdhci_cdns_hs400_enhanced_strobe;
|
||||||
|
sdhci_enable_v4_mode(host);
|
||||||
|
|
||||||
sdhci_get_of_property(pdev);
|
sdhci_get_of_property(pdev);
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user