blob: d70f95cfef3bcb591b4070620266c9756600ef91 [file] [log] [blame]
/*
* drivers/amlogic/media/vout/cvbs/cvbs_out_reg.c
*
* Copyright (C) 2017 Amlogic, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
*/
#include <linux/init.h>
#include <linux/version.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/io.h>
#include <linux/amlogic/cpu_version.h>
#include <linux/platform_device.h>
#include <linux/amlogic/iomap.h>
#include <linux/amlogic/media/vpu/vpu.h>
#include <linux/amlogic/media/vout/vclk_serve.h>
#include "cvbs_out_reg.h"
#define cvbs_log_info(fmt, ...) \
pr_info(fmt, ##__VA_ARGS__)
/* ********************************
* register access api
* **********************************/
unsigned int cvbs_out_reg_read(unsigned int _reg)
{
return vpu_vcbus_read(_reg);
}
void cvbs_out_reg_write(unsigned int _reg, unsigned int _value)
{
return vpu_vcbus_write(_reg, _value);
};
void cvbs_out_reg_setb(unsigned int reg, unsigned int value,
unsigned int _start, unsigned int _len)
{
return vpu_vcbus_setb(reg, value, _start, _len);
}
unsigned int cvbs_out_reg_getb(unsigned int reg,
unsigned int _start, unsigned int _len)
{
return vpu_vcbus_getb(reg, _start, _len);
}
void cvbs_out_reg_set_mask(unsigned int reg, unsigned int _mask)
{
vpu_vcbus_set_mask(reg, _mask);
}
void cvbs_out_reg_clr_mask(unsigned int reg, unsigned int _mask)
{
vpu_vcbus_clr_mask(reg, _mask);
}
unsigned int cvbs_out_hiu_read(unsigned int _reg)
{
return vclk_clk_reg_read(_reg);
};
void cvbs_out_hiu_write(unsigned int _reg, unsigned int _value)
{
vclk_clk_reg_write(_reg, _value);
};
void cvbs_out_hiu_setb(unsigned int _reg, unsigned int _value,
unsigned int _start, unsigned int _len)
{
cvbs_out_hiu_write(_reg, ((cvbs_out_hiu_read(_reg) &
(~(((1L << _len)-1) << _start))) |
((_value & ((1L << _len)-1)) << _start)));
}
unsigned int cvbs_out_hiu_getb(unsigned int _reg,
unsigned int _start, unsigned int _len)
{
return (cvbs_out_hiu_read(_reg) >> (_start)) & ((1L << (_len)) - 1);
}
void cvbs_out_hiu_set_mask(unsigned int _reg, unsigned int _mask)
{
cvbs_out_hiu_write(_reg, (aml_read_hiubus(_reg) | (_mask)));
}
void cvbs_out_hiu_clr_mask(unsigned int _reg, unsigned int _mask)
{
cvbs_out_hiu_write(_reg, (aml_read_hiubus(_reg) & (~(_mask))));
}
unsigned int cvbs_out_ana_read(unsigned int _reg)
{
return vclk_ana_reg_read(_reg);
};
void cvbs_out_ana_write(unsigned int _reg, unsigned int _value)
{
vclk_ana_reg_write(_reg, _value);
};
void cvbs_out_ana_setb(unsigned int _reg, unsigned int _value,
unsigned int _start, unsigned int _len)
{
cvbs_out_ana_write(_reg, ((cvbs_out_ana_read(_reg) &
(~(((1L << _len) - 1) << _start))) |
((_value & ((1L << _len) - 1)) << _start)));
}
unsigned int cvbs_out_ana_getb(unsigned int _reg,
unsigned int _start, unsigned int _len)
{
return (cvbs_out_ana_read(_reg) >> (_start)) & ((1L << (_len)) - 1);
}