blob: f7b36f78d088d109cf615f23eee8fa8130642b2a [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <zircon/types.h>
typedef struct meson_clk_gate {
uint32_t reg; // Offset from Clock Base Addr (in 4 byte words)
uint32_t bit; // Offset into this register.
} meson_clk_gate_t;
typedef struct meson_clk_msr {
uint32_t reg0_offset; // Offset of MSR_CLK_REG0 from MSR_CLK Base Addr
uint32_t reg2_offset; // Offset of MSR_CLK_REG2 from MSR_CLK Base Addr
} meson_clk_msr_t;