Skip to content
Snippets Groups Projects
  1. Feb 06, 2023
  2. Feb 04, 2023
  3. Feb 03, 2023
  4. Feb 02, 2023
    • Sergei Antonov's avatar
      net: ipv6: fix alignment errors on ARM · 9bc80c0b
      Sergei Antonov authored and Tom Rini's avatar Tom Rini committed
      
      Commands "ping6" and "tftpboot ... -ipv6" did not work on ARM because
      machine code expects 4-byte alignment and some structures from net6.h
      are not aligned in memory.
      
      Fix by adding __packed, since it is already used in this file.
      
      Signed-off-by: default avatarSergei Antonov <saproj@gmail.com>
      Reviewed-by: default avatarViacheslav Mitrofanov <v.v.mitrofanov@yadro.com>
      9bc80c0b
    • Svyatoslav Ryhel's avatar
      ARM: tegra: include timer as default option · 412a4c6f
      Svyatoslav Ryhel authored and Tom Warren's avatar Tom Warren committed
      
      Enable TIMER and TEGRA_TIMER for TEGRA_ARMV7_COMMON and TEGRA210.
      Additionally enable SPL_TIMER if build as SPL part and drop
      deprecated configs from common header.
      
      Signed-off-by: default avatarSvyatoslav Ryhel <clamor95@gmail.com>
      Reviewed-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarTom <twarren@nvidia.com>
      412a4c6f
    • Hai Pham's avatar
      dt-bindings: clock: Pick R-Car Gen3 R8A77961 M3W+ header from Linux 6.1.7 · e019f98a
      Hai Pham authored
      
      Pick R-Car Gen3 R8A77961 M3W+ CPG Core Clock header from Linux 6.1.7,
      commit 21e996306a6afaae88295858de0ffb8955173a15 .
      
      Reviewed-by: default avatarMarek Vasut <marek.vasut+renesas@mailbox.org>
      Signed-off-by: default avatarHai Pham <hai.pham.ud@renesas.com>
      Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> # Update commit message
      e019f98a
    • Hai Pham's avatar
      dt-bindings: power: Pick R-Car Gen3 R8A77961 M3W+ header from Linux 6.1.7 · cd6ad682
      Hai Pham authored
      
      Pick R-Car Gen3 R8A77961 M3W+ power domain header from Linux 6.1.7,
      commit 21e996306a6afaae88295858de0ffb8955173a15 .
      
      Reviewed-by: default avatarMarek Vasut <marek.vasut+renesas@mailbox.org>
      Signed-off-by: default avatarHai Pham <hai.pham.ud@renesas.com>
      Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> # Update commit message
      cd6ad682
    • Marek Vasut's avatar
      ARM: dts: rmobile: Synchronize DTs with Linux 6.1.7 · 71d2a5e5
      Marek Vasut authored
      
      Synchronize R-Car device trees with Linux 6.1.7,
      commit 21e996306a6afaae88295858de0ffb8955173a15 .
      
      The following script has been used for the synchronization:
      
      $ for i in $(cd arch/arm/dts/ ; ls -1 r8a* | grep -v 'u-boot.dts' ; sed -n '/#include/ s@.*"\(.*\)"@\1@p' $(ls -1 r8a* | grep -v 'u-boot.dts')) ; do
      	if [ -e /linux-2.6/arch/arm64/boot/dts/renesas/$i ] ; then
      		cp /linux-2.6/arch/arm64/boot/dts/renesas/$i arch/arm/dts/ ;
      	elif [ -e /linux-2.6/arch/arm/boot/dts/$i ] ; then
      		cp /linux-2.6/arch/arm/boot/dts/$i arch/arm/dts/
      	else
      		echo "NOT FOUND: $i"
      	fi
      done
      $ git add $( ( cd arch/arm/dts/ ; ls -1 r8a* | grep -v 'u-boot.dts' ; sed -n '/#include/ s@.*"\(.*\)"@\1@p' $(ls -1 r8a* | grep -v 'u-boot.dts')) | tr " " "\n" | sed 's@^@arch/arm/dts/@g' )
      
      Move the include/dt-bindings/{clk,clock}/versaclock.h header used by
      the renesas boards to match Linux 6.1.y as well.
      
      Keep arch/arm/dts/r8a774c0-u-boot.dtsi sdhi3 node as it is now used
      by the arch/arm/dts/r8a774c0-cat874.dts board.
      
      Pick s@spi-flash@flash@ change in arch/arm/dts/r8a779a0-falcon-u-boot.dts
      from "ARM: dts: Synchronize R-Car V3U DTs with Linux 5.18.3" .
      
      Adjust R8A77990 Ebisu CONFIG_SYS_MMC_ENV_DEV from 2 to 0 to reflect
      the card enumeration in ebisu.dtsi /aliases DT node .
      
      Adjust R8A7795 and R8A7796 ULCB CONFIG_SYS_MMC_ENV_DEV from 1 to 0 to
      reflect the card enumeration in ulcb.dtsi /aliases DT node .
      
      Signed-off-by: default avatarMarek Vasut <marek.vasut+renesas@mailbox.org>
      Signed-off-by: Tam Nguyen <tam.nguyen.xa@renesas.com> # r8a779a0-falcon-u-boot.dts
      Signed-off-by: Hai Pham <hai.pham.ud@renesas.com> # r8a779a0-falcon-u-boot.dts
      71d2a5e5
    • Marek Vasut's avatar
      ARM: dts: rmobile: Synchronize DT headers with Linux 6.1.7 · 9696b246
      Marek Vasut authored
      
      Synchronize R-Car device tree headers with Linux 6.1.7,
      commit 21e996306a6afaae88295858de0ffb8955173a15 .
      
      This is only a copyright and SPDX identifier update, no
      functional change.
      
      The following script has been used for the synchronization:
      
      $ for i in $(cd include/dt-bindings/clock/ ; ls -1 r8a*) ; do cp /linux-2.6/include/dt-bindings/clock/$i include/dt-bindings/clock/ ; done
      $ for i in $(cd include/dt-bindings/power/ ; ls -1 r8a*) ; do cp /linux-2.6/include/dt-bindings/power/$i include/dt-bindings/power/ ; done
      
      Signed-off-by: default avatarMarek Vasut <marek.vasut+renesas@mailbox.org>
      9696b246
  5. Feb 01, 2023
  6. Jan 31, 2023
  7. Jan 30, 2023
Loading