This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
generated from ZigEmbeddedGroup/hardware-support-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
95 lines (85 loc) · 3 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const std = @import("std");
fn path(comptime suffix: []const u8) std.Build.LazyPath {
return .{
.cwd_relative = comptime ((std.fs.path.dirname(@src().file) orelse ".") ++ suffix),
};
}
const hal = .{
.source_file = path("/src/hals/LPC176x5x.zig"),
};
pub const chips = struct {
pub const lpc176x5x = .{
.preferred_format = .elf,
.chip = .{
// TODO: Separate over those chips, this is not generic!
.name = "LPC176x5x",
.cpu = .cortex_m3,
.memory_regions = &.{
.{ .offset = 0x00000000, .length = 512 * 1024, .kind = .flash },
.{ .offset = 0x10000000, .length = 32 * 1024, .kind = .ram },
.{ .offset = 0x2007C000, .length = 32 * 1024, .kind = .ram },
},
.register_definition = .{
.json = path("/src/chips/LPC176x5x.json"),
},
},
.hal = hal,
.binary_post_process = postprocess,
};
};
pub const boards = struct {
pub const mbed = struct {
pub const lpc1768 = .{
.preferred_format = .hex,
.chip = chips.lpc176x5x.chip,
.hal = hal,
.board = .{
.name = "mbed LPC1768",
.url = "https://os.mbed.com/platforms/mbed-LPC1768/",
.source_file = path("/src/boards/mbed_LPC1768.zig"),
},
.binary_post_process = postprocess,
};
};
};
/// Post-processes an ELF file to add a checksum over the first 8 words so the
/// cpu will properly boot.
fn postprocess(b: *std.Build, input: std.Build.LazyPath) std.Build.LazyPath {
const patchelf = b.addExecutable(.{
.name = "lpc176x5x-patchelf",
.root_source_file = path("/src/tools/patchelf.zig"),
});
const patch = b.addRunArtifact(patchelf);
patch.addFileArg(input);
return patch.addOutputFileArg("firmware.elf");
}
pub fn build(b: *std.Build) void {
_ = b;
// const optimize = b.standardOptimizeOption(.{});
// inline for (@typeInfo(boards).Struct.decls) |decl| {
// if (!decl.is_pub)
// continue;
// const exe = microzig.addEmbeddedExecutable(b, .{
// .name = @field(boards, decl.name).name ++ ".minimal",
// .source_file = .{
// .path = "test/programs/minimal.zig",
// },
// .backing = .{ .board = @field(boards, decl.name) },
// .optimize = optimize,
// });
// exe.installArtifact(b);
// }
// inline for (@typeInfo(chips).Struct.decls) |decl| {
// if (!decl.is_pub)
// continue;
// const exe = microzig.addEmbeddedExecutable(b, .{
// .name = @field(chips, decl.name).name ++ ".minimal",
// .source_file = .{
// .path = "test/programs/minimal.zig",
// },
// .backing = .{ .chip = @field(chips, decl.name) },
// .optimize = optimize,
// });
// exe.installArtifact(b);
// }
}