2022-12-03 17:03:19 +08:00
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
// contributor license agreements. See the NOTICE file distributed with
|
|
|
|
// this work for additional information regarding copyright ownership. The
|
|
|
|
// ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance with the
|
|
|
|
// License. You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing permissions and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
//! PinePhone Allwinner A64 Timing Controller (TCON0) Driver for Apache NuttX RTOS
|
2022-12-04 11:12:51 +08:00
|
|
|
//! See https://lupyuen.github.io/articles/de#appendix-timing-controller-tcon0
|
2022-12-03 17:03:19 +08:00
|
|
|
//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf
|
|
|
|
|
|
|
|
/// Import the Zig Standard Library
|
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
/// Import NuttX Functions from C
|
|
|
|
const c = @cImport({
|
|
|
|
// NuttX Defines
|
|
|
|
@cDefine("__NuttX__", "");
|
|
|
|
@cDefine("NDEBUG", "");
|
|
|
|
@cDefine("FAR", "");
|
|
|
|
|
|
|
|
// NuttX Header Files
|
|
|
|
@cInclude("arch/types.h");
|
|
|
|
@cInclude("../../nuttx/include/limits.h");
|
|
|
|
@cInclude("nuttx/config.h");
|
|
|
|
@cInclude("inttypes.h");
|
|
|
|
@cInclude("unistd.h");
|
|
|
|
@cInclude("stdlib.h");
|
|
|
|
@cInclude("stdio.h");
|
|
|
|
});
|
|
|
|
|
|
|
|
/// Init Timing Controller TCON0
|
2022-12-04 11:12:51 +08:00
|
|
|
/// Based on https://lupyuen.github.io/articles/de#appendix-timing-controller-tcon0
|
2022-12-03 17:03:19 +08:00
|
|
|
pub export fn tcon0_init() void {
|
|
|
|
debug("tcon0_init: start", .{});
|
|
|
|
defer { debug("tcon0_init: end", .{}); }
|
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// TODO: Decode the addresses and values
|
|
|
|
|
|
|
|
// PLL_VIDEO0
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c20010 = 0x81006207 (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("PLL_VIDEO0", .{});
|
|
|
|
putreg32(0x81006207, 0x1c20010); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// PLL_MIPI
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c20040 = 0xc00000 (DMB)
|
|
|
|
// udelay 100
|
|
|
|
// 0x1c20040 = 0x80c0071a (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("PLL_MIPI", .{});
|
|
|
|
putreg32(0xc00000, 0x1c20040); // TODO: DMB
|
|
|
|
_ = c.usleep(100);
|
|
|
|
putreg32(0x80c0071a, 0x1c20040); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// TCON0 source MIPI_PLL
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c20118 = 0x80000000 (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("TCON0 source MIPI_PLL", .{});
|
|
|
|
putreg32(0x80000000, 0x1c20118); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// Clock on
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c20064 = 0x8 (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Clock on", .{});
|
|
|
|
putreg32(0x8, 0x1c20064); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// Reset off
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c202c4 = 0x8 (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Reset off", .{});
|
|
|
|
putreg32(0x8, 0x1c202c4); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// Init lcdc: Disable tcon, Disable all interrupts
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c0c000 = 0x0 (DMB)
|
|
|
|
// 0x1c0c004 = 0x0
|
|
|
|
// 0x1c0c008 = 0x0
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Init lcdc: Disable tcon, Disable all interrupts", .{});
|
|
|
|
putreg32(0x0, 0x1c0c000); // TODO: DMB
|
|
|
|
putreg32(0x0, 0x1c0c004);
|
|
|
|
putreg32(0x0, 0x1c0c008);
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// Set all io lines to tristate
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c0c08c = 0xffffffff
|
|
|
|
// 0x1c0c0f4 = 0xffffffff
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Set all io lines to tristate", .{});
|
|
|
|
putreg32(0xffffffff, 0x1c0c08c);
|
|
|
|
putreg32(0xffffffff, 0x1c0c0f4);
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// mode set: DCLK = MIPI_PLL / 6
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c0c044 = 0x80000006
|
|
|
|
// 0x1c0c040 = 0x81000000
|
|
|
|
// 0x1c0c048 = 0x2cf059f
|
|
|
|
// 0x1c0c0f8 = 0x8
|
|
|
|
// 0x1c0c060 = 0x10010005
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("mode set: DCLK = MIPI_PLL / 6", .{});
|
|
|
|
putreg32(0x80000006, 0x1c0c044);
|
|
|
|
putreg32(0x81000000, 0x1c0c040);
|
|
|
|
putreg32(0x2cf059f, 0x1c0c048);
|
|
|
|
putreg32(0x8, 0x1c0c0f8);
|
|
|
|
putreg32(0x10010005, 0x1c0c060);
|
|
|
|
|
|
|
|
// The datasheet says that this should be set higher than 20 * pixel cycle, but it's not clear what a pixel cycle is.
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c0c160 = 0x2f02cf
|
|
|
|
// 0x1c0c164 = 0x59f
|
|
|
|
// 0x1c0c168 = 0x1bc2000a
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Set pixel cycle", .{});
|
|
|
|
putreg32(0x2f02cf, 0x1c0c160);
|
|
|
|
putreg32(0x59f, 0x1c0c164);
|
|
|
|
putreg32(0x1bc2000a, 0x1c0c168);
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// The Allwinner BSP has a comment that the period should be the display clock * 15, but uses an hardcoded 3000
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c0c1f0 = 0xbb80003
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Set period", .{});
|
|
|
|
putreg32(0xbb80003, 0x1c0c1f0);
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// Enable the output on the pins
|
2022-12-03 17:03:19 +08:00
|
|
|
// 0x1c0c08c = 0xe0000000 (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Enable output", .{});
|
|
|
|
putreg32(0xe0000000, 0x1c0c08c); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
|
2022-12-03 18:56:38 +08:00
|
|
|
// enable tcon as a whole
|
2022-12-03 17:03:19 +08:00
|
|
|
// setbits 0x1c0c000, 0x80000000 (DMB)
|
2022-12-03 18:56:38 +08:00
|
|
|
debug("Enable TCON0", .{});
|
|
|
|
modreg32(0x80000000, 0x80000000, 0x1c0c000); // TODO: DMB
|
2022-12-03 17:03:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Modify the specified bits in a memory mapped register.
|
|
|
|
/// Note: Parameters are different from modifyreg32
|
|
|
|
/// Based on https://github.com/apache/nuttx/blob/master/arch/arm64/src/common/arm64_arch.h#L473
|
|
|
|
fn modreg32(
|
|
|
|
comptime val: u32, // Bits to set, like (1 << bit)
|
|
|
|
comptime mask: u32, // Bits to clear, like (1 << bit)
|
|
|
|
addr: u64 // Address to modify
|
|
|
|
) void {
|
|
|
|
comptime { assert(val & mask == val); }
|
|
|
|
debug(" *0x{x}: clear 0x{x}, set 0x{x}", .{ addr, mask, val & mask });
|
|
|
|
putreg32(
|
|
|
|
(getreg32(addr) & ~(mask))
|
|
|
|
| ((val) & (mask)),
|
|
|
|
(addr)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the 32-bit value at the address
|
|
|
|
fn getreg32(addr: u64) u32 {
|
|
|
|
const ptr = @intToPtr(*const volatile u32, addr);
|
|
|
|
return ptr.*;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the 32-bit value at the address
|
|
|
|
fn putreg32(val: u32, addr: u64) void {
|
|
|
|
if (enableLog) { debug(" *0x{x} = 0x{x}", .{ addr, val }); }
|
|
|
|
const ptr = @intToPtr(*volatile u32, addr);
|
|
|
|
ptr.* = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set to False to disable log
|
|
|
|
var enableLog = true;
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Panic Handler
|
|
|
|
|
|
|
|
/// Called by Zig when it hits a Panic. We print the Panic Message, Stack Trace and halt. See
|
|
|
|
/// https://andrewkelley.me/post/zig-stack-traces-kernel-panic-bare-bones-os.html
|
|
|
|
/// https://github.com/ziglang/zig/blob/master/lib/std/builtin.zig#L763-L847
|
|
|
|
pub fn panic(
|
|
|
|
message: []const u8,
|
|
|
|
_stack_trace: ?*std.builtin.StackTrace
|
|
|
|
) noreturn {
|
|
|
|
// Print the Panic Message
|
|
|
|
_ = _stack_trace;
|
|
|
|
_ = puts("\n!ZIG PANIC!");
|
|
|
|
_ = puts(@ptrCast([*c]const u8, message));
|
|
|
|
|
|
|
|
// Print the Stack Trace
|
|
|
|
_ = puts("Stack Trace:");
|
|
|
|
var it = std.debug.StackIterator.init(@returnAddress(), null);
|
|
|
|
while (it.next()) |return_address| {
|
|
|
|
_ = printf("%p\n", return_address);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Halt
|
|
|
|
c.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Logging
|
|
|
|
|
|
|
|
/// Called by Zig for `std.log.debug`, `std.log.info`, `std.log.err`, ...
|
|
|
|
/// https://gist.github.com/leecannon/d6f5d7e5af5881c466161270347ce84d
|
|
|
|
pub fn log(
|
|
|
|
comptime _message_level: std.log.Level,
|
|
|
|
comptime _scope: @Type(.EnumLiteral),
|
|
|
|
comptime format: []const u8,
|
|
|
|
args: anytype,
|
|
|
|
) void {
|
|
|
|
_ = _message_level;
|
|
|
|
_ = _scope;
|
|
|
|
|
|
|
|
// Format the message
|
|
|
|
var buf: [100]u8 = undefined; // Limit to 100 chars
|
|
|
|
var slice = std.fmt.bufPrint(&buf, format, args)
|
|
|
|
catch { _ = puts("*** log error: buf too small"); return; };
|
|
|
|
|
|
|
|
// Terminate the formatted message with a null
|
|
|
|
var buf2: [buf.len + 1 : 0]u8 = undefined;
|
|
|
|
std.mem.copy(
|
|
|
|
u8,
|
|
|
|
buf2[0..slice.len],
|
|
|
|
slice[0..slice.len]
|
|
|
|
);
|
|
|
|
buf2[slice.len] = 0;
|
|
|
|
|
|
|
|
// Print the formatted message
|
|
|
|
_ = puts(&buf2);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Imported Functions and Variables
|
|
|
|
|
|
|
|
/// For safety, we import these functions ourselves to enforce Null-Terminated Strings.
|
|
|
|
/// We changed `[*c]const u8` to `[*:0]const u8`
|
|
|
|
extern fn printf(format: [*:0]const u8, ...) c_int;
|
|
|
|
extern fn puts(str: [*:0]const u8) c_int;
|
|
|
|
|
|
|
|
/// Aliases for Zig Standard Library
|
|
|
|
const assert = std.debug.assert;
|
|
|
|
const debug = std.log.debug;
|