<feed xmlns='http://www.w3.org/2005/Atom'>
<title>starfive-tech/linux.git/include/linux, branch VF2_v2.8.0</title>
<subtitle>StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)</subtitle>
<id>https://git.radix-linux.su/starfive-tech/linux.git/atom?h=VF2_v2.8.0</id>
<link rel='self' href='https://git.radix-linux.su/starfive-tech/linux.git/atom?h=VF2_v2.8.0'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/'/>
<updated>2023-01-07T15:02:18+00:00</updated>
<entry>
<title>Merge tag 'JH7110_515_SDK_v4.0.0-rc1' into vf2-515-devel</title>
<updated>2023-01-07T15:02:18+00:00</updated>
<author>
<name>Andy Hu</name>
<email>andy.hu@starfivetech.com</email>
</author>
<published>2023-01-07T15:02:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=50a831018ed997c9fb3b603574176b221a28aa12'/>
<id>urn:sha1:50a831018ed997c9fb3b603574176b221a28aa12</id>
<content type='text'>
version JH7110_515_SDK_v4.0.0-rc1 for JH7110 EVB board
1. #2828 support linux perf tool
2. #3049 merge hibernation branch to SDK
3. #2708 uboot support vout clk driver
4. #3006 uboot handle OTP return value
5. #2969, #3039 venc jpu fix futex issue
</content>
</entry>
<entry>
<title>RISC-V: Add sscofpmf extension support</title>
<updated>2023-01-03T06:26:17+00:00</updated>
<author>
<name>Atish Patra</name>
<email>atish.patra@wdc.com</email>
</author>
<published>2021-08-27T22:03:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=f90b5c68dcce615739e533ad306be090ca1c99a1'/>
<id>urn:sha1:f90b5c68dcce615739e533ad306be090ca1c99a1</id>
<content type='text'>
The sscofpmf extension allows counter overflow and filtering for
programmable counters. Enable the perf driver to handle the overflow
interrupt. The overflow interrupt is a hart local interrupt.
Thus, per cpu overflow interrupts are setup as a child under the root
INTC irq domain.

Signed-off-by: Atish Patra &lt;atish.patra@wdc.com&gt;
Signed-off-by: Atish Patra &lt;atishp@rivosinc.com&gt;
</content>
</entry>
<entry>
<title>RISC-V: Add perf platform driver based on SBI PMU extension</title>
<updated>2023-01-03T06:26:17+00:00</updated>
<author>
<name>Atish Patra</name>
<email>atish.patra@wdc.com</email>
</author>
<published>2021-03-17T23:54:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=9a7e4fe5717564dfbd317990b50eddb42bb36ae8'/>
<id>urn:sha1:9a7e4fe5717564dfbd317990b50eddb42bb36ae8</id>
<content type='text'>
RISC-V SBI specification added a PMU extension that allows to configure
start/stop any pmu counter. The RISC-V perf can use most of the generic
perf features except interrupt overflow and event filtering based on
privilege mode which will be added in future.

It also allows to monitor a handful of firmware counters that can provide
insights into firmware activity during a performance analysis.

Signed-off-by: Atish Patra &lt;atish.patra@wdc.com&gt;
Signed-off-by: Atish Patra &lt;atishp@rivosinc.com&gt;
</content>
</entry>
<entry>
<title>RISC-V: Add a simple platform driver for RISC-V legacy perf</title>
<updated>2023-01-03T06:26:17+00:00</updated>
<author>
<name>Atish Patra</name>
<email>atish.patra@wdc.com</email>
</author>
<published>2021-03-17T23:31:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=42b683064d64a6c52ad909af6aaf1bf01315d634'/>
<id>urn:sha1:42b683064d64a6c52ad909af6aaf1bf01315d634</id>
<content type='text'>
The old RISC-V perf implementation allowed counting of only
cycle/instruction counters using perf. Restore that feature by implementing
a simple platform driver under a separate config to provide backward
compatibility. Any existing software stack will continue to work as it is.
However, it provides an easy way out in future where we can remove the
legacy driver.

Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
Signed-off-by: Atish Patra &lt;atish.patra@wdc.com&gt;
Signed-off-by: Atish Patra &lt;atishp@rivosinc.com&gt;
</content>
</entry>
<entry>
<title>RISC-V: Add a perf core library for pmu drivers</title>
<updated>2023-01-03T06:26:17+00:00</updated>
<author>
<name>Atish Patra</name>
<email>atish.patra@wdc.com</email>
</author>
<published>2021-03-17T23:18:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=2680fe9e03431db972812ef12ca1b7eb931792ad'/>
<id>urn:sha1:2680fe9e03431db972812ef12ca1b7eb931792ad</id>
<content type='text'>
Implement a perf core library that can support all the essential perf
features in future. It can also accommodate any type of PMU implementation
in future. Currently, both SBI based perf driver and legacy driver
implemented uses the library. Most of the common perf functionalities
are kept in this core library wile PMU specific driver can implement PMU
specific features. For example, the SBI specific functionality will be
implemented in the SBI specific driver.

Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
Signed-off-by: Atish Patra &lt;atish.patra@wdc.com&gt;
Signed-off-by: Atish Patra &lt;atishp@rivosinc.com&gt;
</content>
</entry>
<entry>
<title>regulator:axp1506:Remove regulator ALDO4</title>
<updated>2022-11-03T09:24:53+00:00</updated>
<author>
<name>Jianlong Huang</name>
<email>jianlong.huang@starfivetech.com</email>
</author>
<published>2022-10-31T01:31:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=e4f9d060e5fff3776b8bc2f9dd4da63961cf2cc5'/>
<id>urn:sha1:e4f9d060e5fff3776b8bc2f9dd4da63961cf2cc5</id>
<content type='text'>
Fix bug, remove sdio_vdd and remove ALDO4 enum.
Which may cause cpu freq don't work.

Signed-off-by: Jianlong Huang &lt;jianlong.huang@starfivetech.com&gt;
</content>
</entry>
<entry>
<title>driver: regulator: Add axp15060 pmic regulator driver</title>
<updated>2022-10-28T01:01:28+00:00</updated>
<author>
<name>Kevin.xie</name>
<email>kevin.xie@starfivetech.com</email>
</author>
<published>2022-07-12T01:57:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=796ac7edea839865eb5499edec7356c810bf4fe8'/>
<id>urn:sha1:796ac7edea839865eb5499edec7356c810bf4fe8</id>
<content type='text'>
Add support for the axp15060 pmic.

Signed-off-by: Kevin.xie &lt;kevin.xie@starfivetech.com&gt;
</content>
</entry>
<entry>
<title>linux:drivers: revise 'stf' to 'starfive'</title>
<updated>2022-09-05T07:57:36+00:00</updated>
<author>
<name>Ziv.Xu</name>
<email>Ziv.Xu@starfivetech.com</email>
</author>
<published>2022-09-05T05:33:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=1b08a100af515ae307330adeb642df808d312334'/>
<id>urn:sha1:1b08a100af515ae307330adeb642df808d312334</id>
<content type='text'>
revise "stf" to "starfive" for PCIE, CPUfreq, CPUidle, PMIC driver.

Signed-off-by: Ziv.Xu &lt;Ziv.Xu@starfivetech.com&gt;
</content>
</entry>
<entry>
<title>CR_1827_cannot_record_play_simultaneously</title>
<updated>2022-08-26T03:21:57+00:00</updated>
<author>
<name>Walker Chen</name>
<email>walker.chen@starfivetech.com</email>
</author>
<published>2022-08-26T03:21:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=8fba0f28d47012e952a122351c95e1538d81031b'/>
<id>urn:sha1:8fba0f28d47012e952a122351c95e1538d81031b</id>
<content type='text'>
1.Resolved playback and record can work simultaneously.
2.Rearrange audio configuration in kernel menu.

Signed-off-by: Walker Chen &lt;walker.chen@starfivetech.com&gt;
</content>
</entry>
<entry>
<title>regulator: stf7110: Add regulator support for JH7110 evb</title>
<updated>2022-06-07T10:33:16+00:00</updated>
<author>
<name>mason.huo</name>
<email>mason.huo@starfivetech.com</email>
</author>
<published>2022-03-25T06:12:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/starfive-tech/linux.git/commit/?id=80f85ca138889ca5bc2999729f3fc1dd05994ae8'/>
<id>urn:sha1:80f85ca138889ca5bc2999729f3fc1dd05994ae8</id>
<content type='text'>
Add 7 regulators base on regulator framework for
JH7110 evb HW design.

Signed-off-by: mason.huo &lt;mason.huo@starfivetech.com&gt;
</content>
</entry>
</feed>
