blob: d9a7d8206ffa8e2a9304b028f0d9c19093d3337d [file] [log] [blame]
Kumar Gala69018ce2008-01-17 08:25:45 -06001/*
2 * Copyright 2008 Freescale Semiconductor, Inc.
3 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Kumar Gala69018ce2008-01-17 08:25:45 -06008 */
9
10#include <common.h>
11#include <libfdt.h>
12#include <fdt_support.h>
13#include "qe.h"
14
15DECLARE_GLOBAL_DATA_PTR;
16
17/*
18 * If a QE firmware has been uploaded, then add the 'firmware' node under
19 * the 'qe' node.
20 */
21void fdt_fixup_qe_firmware(void *blob)
22{
23 struct qe_firmware_info *qe_fw_info;
24 int node, ret;
25
26 qe_fw_info = qe_get_firmware_info();
27 if (!qe_fw_info)
28 return;
29
30 node = fdt_path_offset(blob, "/qe");
31 if (node < 0)
32 return;
33
34 /* We assume the node doesn't exist yet */
35 node = fdt_add_subnode(blob, node, "firmware");
36 if (node < 0)
37 return;
38
39 ret = fdt_setprop(blob, node, "extended-modes",
40 &qe_fw_info->extended_modes, sizeof(u64));
41 if (ret < 0)
42 goto error;
43
44 ret = fdt_setprop_string(blob, node, "id", qe_fw_info->id);
45 if (ret < 0)
46 goto error;
47
48 ret = fdt_setprop(blob, node, "virtual-traps", qe_fw_info->vtraps,
49 sizeof(qe_fw_info->vtraps));
50 if (ret < 0)
51 goto error;
52
53 return;
54
55error:
56 fdt_del_node(blob, node);
57}
58
59void ft_qe_setup(void *blob)
60{
Kumar Gala69018ce2008-01-17 08:25:45 -060061 do_fixup_by_prop_u32(blob, "device_type", "qe", 4,
Simon Glass45bae2e2012-12-13 20:48:50 +000062 "bus-frequency", gd->arch.qe_clk, 1);
Kumar Gala69018ce2008-01-17 08:25:45 -060063 do_fixup_by_prop_u32(blob, "device_type", "qe", 4,
Simon Glass1206c182012-12-13 20:48:44 +000064 "brg-frequency", gd->arch.brg_clk, 1);
Kumar Gala69018ce2008-01-17 08:25:45 -060065 do_fixup_by_compat_u32(blob, "fsl,qe",
Simon Glass45bae2e2012-12-13 20:48:50 +000066 "clock-frequency", gd->arch.qe_clk, 1);
Kumar Gala69018ce2008-01-17 08:25:45 -060067 do_fixup_by_compat_u32(blob, "fsl,qe",
Simon Glass45bae2e2012-12-13 20:48:50 +000068 "bus-frequency", gd->arch.qe_clk, 1);
Kumar Gala69018ce2008-01-17 08:25:45 -060069 do_fixup_by_compat_u32(blob, "fsl,qe",
Simon Glass1206c182012-12-13 20:48:44 +000070 "brg-frequency", gd->arch.brg_clk, 1);
Anton Vorontsov3fca8032009-10-15 17:47:16 +040071 do_fixup_by_compat_u32(blob, "fsl,qe-gtm",
Simon Glass45bae2e2012-12-13 20:48:50 +000072 "clock-frequency", gd->arch.qe_clk / 2, 1);
Kumar Gala69018ce2008-01-17 08:25:45 -060073 fdt_fixup_qe_firmware(blob);
Kumar Gala69018ce2008-01-17 08:25:45 -060074}