Skip to content

Instantly share code, notes, and snippets.

View apritzel's full-sized avatar

Andre Przywara apritzel

View GitHub Profile
@apritzel
apritzel / r40_dram_dual_rank.diff
Created February 10, 2021 14:12
R40 dual rank hack
diff --git a/arch/arm/mach-sunxi/dram_sunxi_dw.c b/arch/arm/mach-sunxi/dram_sunxi_dw.c
index d0600011ffa..5dcafa21bc9 100644
--- a/arch/arm/mach-sunxi/dram_sunxi_dw.c
+++ b/arch/arm/mach-sunxi/dram_sunxi_dw.c
@@ -388,8 +388,9 @@ static void mctl_set_cr(uint16_t socid, struct dram_para *para)
{
struct sunxi_mctl_com_reg * const mctl_com =
(struct sunxi_mctl_com_reg *)SUNXI_DRAM_COM_BASE;
+ u32 cr_val;
@apritzel
apritzel / sunxi_clk.c
Created January 8, 2019 11:35
recursive implemenation of U-Boot clock driver for Allwinner SoCs
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2018 Amarula Solutions.
* Author: Jagan Teki <jagan@amarulasolutions.com>
*/
#include <common.h>
#include <clk-uclass.h>
#include <dm.h>
#include <errno.h>
@apritzel
apritzel / a64_arch_timer.log
Created May 26, 2018 00:04
Allwinner A64 arch timer monotonicity test
##############################
# test output mainline kernel
##############################
$ ./test_timer
TAP version 13
# number of cores: 4
ok 1 same timer frequency on all cores
# timer frequency is 24000000 Hz (24 MHz)
# time1: eb447fff, time2: eb444000, diff: -16383
# time1: eb44efff, time2: eb44e800, diff: -2047
@apritzel
apritzel / sunxi-add-SPL-FEL-button.patch
Created April 5, 2018 09:06
check configurable GPIO button in SPL and go to FEL mode if low
From 48be8001e507a0bd431b4f8186a95d11ddc6ee36 Mon Sep 17 00:00:00 2001
From: Andre Przywara <andre.przywara@arm.com>
Date: Wed, 23 Nov 2016 00:35:01 +0000
Subject: [PATCH] sunxi: add SPL FEL button
Some of the newer Allwinner boards that come with SPI flash soldered
are missing an easy way to trigger the USB-OTG FEL boot mode.
On most boards without eMMC FEL mode is entered when there is no SD card
found, boards with eMMC typically feature a hardware FEL button.
Now some boards like newer boards from OrangePi have no eMMC, but have a SPI
@apritzel
apritzel / check_xen_coding_style.sh
Created January 31, 2018 12:24
very simple Xen coding style checker (to catch Linux copy&paste artefacts)
#!/bin/sh
grep -n '^ *'$'\t' "$1" && echo "^^^ tabs"
grep -n 'if(' "$1" && echo "^^^ no space after if"
grep -n 'if ([^ ]' "$1" && echo "^^^ no space after if ("
grep -n 'while(' "$1" && echo "^^^ no space after while"
grep -n 'while ([^ ]' "$1" && echo "^^^ no space after while ("
grep -n 'for(' "$1" && echo "^^^ no space after for"
grep -n 'for ([^ ]' "$1" && echo "^^^ no space after for ("
grep -n '[ ]*[^ ].*{$' "$1" && echo "^^^ opening bracket at the end of line"
sunxi boot monitor v0.1
Allwinner A64 SoC detected.
Booted from FEL
128Mbit SPI flash detected.
(No SD card detection yet.)
(No eMMC detection yet).
Use "help" for a list of commands.
# help
help
@apritzel
apritzel / orangepi_pc2.bootlog.txt
Created November 11, 2016 02:11
Booting 4.9-rc2 on the Allwinner H5 based OrangePi PC 2 (via FEL)
U-Boot SPL 2016.11-rc3-00019-g5c2dad5-dirty (Nov 11 2016 - 01:27:06)
DRAM:DRAM BOOT DRIVE INFO: V0.6
the chip id is 0x1
the chip id is 0x1
the chip id is 0x1
the chip id is 0x1
the chip id is 0x1
DRAM CLK =672 MHZ
DRAM Type =3 (2:DDR2,3:DDR3,6:LPDDR2,7:LPDDR3)
DRAM zq value: 0x3b3bf9
@apritzel
apritzel / inject_dt.sh
Created August 4, 2016 09:45
Script to recreate a DT in U-Boot via the serial console
#!/bin/sh
send() {
read -d\# line
echo "$1"
}
# kick u-boot to tickle the prompt and get the state machine going
echo "printenv bootcmd"
read line
@apritzel
apritzel / sun50i-a64.dtsi
Created August 1, 2016 01:32
Allwinner A64 SCPI clock based DT
/*
* Copyright (C) 2016 ARM Ltd.
* based on the Allwinner H3 dtsi:
* Copyright (C) 2015 Jens Kuske <jenskuske@gmail.com>
*
* This file is dual-licensed: you can use it either under the terms
* of the GPL or the X11 license, at your option. Note that this dual
* licensing only applies to this file, and not this project as a
* whole.
*
@apritzel
apritzel / sun50i-a64.dtsi
Created August 1, 2016 01:32
Allwinner A64 SCPI clock based DT
/*
* Copyright (C) 2016 ARM Ltd.
* based on the Allwinner H3 dtsi:
* Copyright (C) 2015 Jens Kuske <jenskuske@gmail.com>
*
* This file is dual-licensed: you can use it either under the terms
* of the GPL or the X11 license, at your option. Note that this dual
* licensing only applies to this file, and not this project as a
* whole.
*