forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'riscv/for-v5.3-rc4' of git://git.kernel.org/pub/scm/linux/…
…kernel/git/riscv/linux Pull RISC-V updates from Paul Walmsley: "A few minor RISC-V updates for v5.3-rc4: - Remove __udivdi3() from the 32-bit Linux port, converting the only upstream user to use do_div(), per Linux policy - Convert the RISC-V standard clocksource away from per-cpu data structures, since only one is used by Linux, even on a multi-CPU system - A set of DT binding updates that remove an obsolete text binding in favor of a YAML binding, fix a bogus compatible string in the schema (thus fixing a "make dtbs_check" warning), and clarifies the future values expected in one of the RISC-V CPU properties" * tag 'riscv/for-v5.3-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux: dt-bindings: riscv: fix the schema compatible string for the HiFive Unleashed board dt-bindings: riscv: remove obsolete cpus.txt RISC-V: Remove udivdi3 riscv: delay: use do_div() instead of __udivdi3() dt-bindings: Update the riscv,isa string description RISC-V: Remove per cpu clocksource
- Loading branch information
Showing
7 changed files
with
24 additions
and
202 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,18 @@ maintainers: | |
- Paul Walmsley <[email protected]> | ||
- Palmer Dabbelt <[email protected]> | ||
|
||
description: | | ||
This document uses some terminology common to the RISC-V community | ||
that is not widely used, the definitions of which are listed here: | ||
hart: A hardware execution context, which contains all the state | ||
mandated by the RISC-V ISA: a PC and some registers. This | ||
terminology is designed to disambiguate software's view of execution | ||
contexts from any particular microarchitectural implementation | ||
strategy. For example, an Intel laptop containing one socket with | ||
two cores, each of which has two hyperthreads, could be described as | ||
having four harts. | ||
properties: | ||
compatible: | ||
items: | ||
|
@@ -50,6 +62,10 @@ properties: | |
User-Level ISA document, available from | ||
https://riscv.org/specifications/ | ||
|
||
While the isa strings in ISA specification are case | ||
insensitive, letters in the riscv,isa string must be all | ||
lowercase to simplify parsing. | ||
|
||
timebase-frequency: | ||
type: integer | ||
minimum: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,3 @@ lib-y += memset.o | |
lib-y += uaccess.o | ||
|
||
lib-$(CONFIG_64BIT) += tishift.o | ||
|
||
lib-$(CONFIG_32BIT) += udivdi3.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters