blob: 1a3fa3fdaec0d8f9c43054278ae3bd68b32e4f45 [file]
/*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*/
#include <autoconf.h>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sel4platsupport/timer.h>
#include <sel4platsupport/mach/gpt.h>
#include <platsupport/mach/gpt.h>
#include <sel4utils/util.h>
#include "../../timer_common.h"
seL4_timer_t *
sel4platsupport_get_gpt(vspace_t *vspace, simple_t *simple, vka_t *vka, seL4_CPtr notification,
uint32_t prescaler)
{
seL4_timer_t *timer = calloc(1, sizeof(seL4_timer_t));
if (timer == NULL) {
LOG_ERROR("Failed to allocate object of size %u\n", sizeof(seL4_timer_t));
goto error;
}
void *paddr = (void *) GPT1_DEVICE_PADDR;
uint32_t irq = GPT1_INTERRUPT;
timer_common_data_t *data = timer_common_init(vspace, simple, vka, notification, irq, paddr);
timer->data = data;
if (timer->data == NULL) {
goto error;
}
timer->handle_irq = timer_common_handle_irq;
/* do hardware init */
gpt_config_t config = {
.vaddr = data->vaddr,
.prescaler = prescaler
};
timer->timer = gpt_get_timer(&config);
if (timer->timer == NULL) {
goto error;
}
/* success */
return timer;
error:
if (timer != NULL) {
timer_common_destroy(timer->data, vka, vspace);
free(timer);
}
return NULL;
}
void
sel4platsupport_destroy_gpt(seL4_timer_t *timer, vka_t *vka, vspace_t *vspace)
{
timer_stop(timer->timer);
timer_common_destroy(timer->data, vka, vspace);
free(timer);
}