setup.c (1c96fcdef8c7492ecf34ed70102a1ae5253ef9d1) setup.c (0aafbdf35c75cbfec82636d01e6dc7950bc1507c)
1/*
2 * Microwatt FPGA-based SoC platform setup code.
3 *
4 * Copyright 2020 Paul Mackerras (paulus@ozlabs.org), IBM Corp.
5 */
6
7#include <linux/types.h>
8#include <linux/kernel.h>

--- 26 unchanged lines hidden (view full) ---

35}
36
37define_machine(microwatt) {
38 .name = "microwatt",
39 .compatible = "microwatt-soc",
40 .init_IRQ = microwatt_init_IRQ,
41 .setup_arch = microwatt_setup_arch,
42 .progress = udbg_progress,
1/*
2 * Microwatt FPGA-based SoC platform setup code.
3 *
4 * Copyright 2020 Paul Mackerras (paulus@ozlabs.org), IBM Corp.
5 */
6
7#include <linux/types.h>
8#include <linux/kernel.h>

--- 26 unchanged lines hidden (view full) ---

35}
36
37define_machine(microwatt) {
38 .name = "microwatt",
39 .compatible = "microwatt-soc",
40 .init_IRQ = microwatt_init_IRQ,
41 .setup_arch = microwatt_setup_arch,
42 .progress = udbg_progress,
43 .calibrate_decr = generic_calibrate_decr,
44};
43};