blob: 270942ea89c5c03df742177d0bf968de364aa929 [file] [log] [blame]
/*
* Copyright 2018 Google LLC
*
* Licensed 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
*
* https://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.
*/
#pragma once
#include <stdint.h>
#include "hf/addr.h"
struct arch_regs {
uint64_t r[5];
uint16_t vcpu_index;
};
static inline void arch_irq_disable(void)
{
/* TODO */
}
static inline void arch_irq_enable(void)
{
/* TODO */
}
static inline void arch_cpu_update(bool is_primary)
{
/* TODO */
(void)is_primary;
}
static inline void arch_regs_init(struct arch_regs *r, ipaddr_t pc, size_t arg)
{
/* TODO */
(void)pc;
r->r[0] = arg;
}
static inline void arch_regs_set_vcpu_index(struct arch_regs *r, uint16_t index)
{
r->vcpu_index = index;
}
static inline void arch_regs_set_retval(struct arch_regs *r, size_t v)
{
r->r[0] = v;
}