mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
78 lines
2.3 KiB
C
78 lines
2.3 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Freescale i.MX28 Battery measurement init
|
|
*
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
|
* on behalf of DENX Software Engineering GmbH
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <config.h>
|
|
#include <asm/io.h>
|
|
#include <asm/arch/imx-regs.h>
|
|
|
|
#include "mxs_init.h"
|
|
|
|
void mxs_lradc_init(void)
|
|
{
|
|
struct mxs_lradc_regs *regs = (struct mxs_lradc_regs *)MXS_LRADC_BASE;
|
|
|
|
debug("SPL: Initialisating LRADC\n");
|
|
|
|
writel(LRADC_CTRL0_SFTRST, ®s->hw_lradc_ctrl0_clr);
|
|
writel(LRADC_CTRL0_CLKGATE, ®s->hw_lradc_ctrl0_clr);
|
|
writel(LRADC_CTRL0_ONCHIP_GROUNDREF, ®s->hw_lradc_ctrl0_clr);
|
|
|
|
clrsetbits_le32(®s->hw_lradc_ctrl3,
|
|
LRADC_CTRL3_CYCLE_TIME_MASK,
|
|
LRADC_CTRL3_CYCLE_TIME_6MHZ);
|
|
|
|
clrsetbits_le32(®s->hw_lradc_ctrl4,
|
|
LRADC_CTRL4_LRADC7SELECT_MASK |
|
|
LRADC_CTRL4_LRADC6SELECT_MASK,
|
|
LRADC_CTRL4_LRADC7SELECT_CHANNEL7 |
|
|
LRADC_CTRL4_LRADC6SELECT_CHANNEL10);
|
|
}
|
|
|
|
void mxs_lradc_enable_batt_measurement(void)
|
|
{
|
|
struct mxs_lradc_regs *regs = (struct mxs_lradc_regs *)MXS_LRADC_BASE;
|
|
|
|
debug("SPL: Enabling LRADC battery measurement\n");
|
|
|
|
/* Check if the channel is present at all. */
|
|
if (!(readl(®s->hw_lradc_status) & LRADC_STATUS_CHANNEL7_PRESENT)) {
|
|
debug("SPL: LRADC channel 7 is not present - aborting\n");
|
|
return;
|
|
}
|
|
|
|
debug("SPL: LRADC channel 7 is present - configuring\n");
|
|
|
|
writel(LRADC_CTRL1_LRADC7_IRQ_EN, ®s->hw_lradc_ctrl1_clr);
|
|
writel(LRADC_CTRL1_LRADC7_IRQ, ®s->hw_lradc_ctrl1_clr);
|
|
|
|
clrsetbits_le32(®s->hw_lradc_conversion,
|
|
LRADC_CONVERSION_SCALE_FACTOR_MASK,
|
|
LRADC_CONVERSION_SCALE_FACTOR_LI_ION);
|
|
writel(LRADC_CONVERSION_AUTOMATIC, ®s->hw_lradc_conversion_set);
|
|
|
|
/* Configure the channel. */
|
|
writel((1 << 7) << LRADC_CTRL2_DIVIDE_BY_TWO_OFFSET,
|
|
®s->hw_lradc_ctrl2_clr);
|
|
writel(0xffffffff, ®s->hw_lradc_ch7_clr);
|
|
clrbits_le32(®s->hw_lradc_ch7, LRADC_CH_NUM_SAMPLES_MASK);
|
|
writel(LRADC_CH_ACCUMULATE, ®s->hw_lradc_ch7_clr);
|
|
|
|
/* Schedule the channel. */
|
|
writel(1 << 7, ®s->hw_lradc_ctrl0_set);
|
|
|
|
/* Start the channel sampling. */
|
|
writel(((1 << 7) << LRADC_DELAY_TRIGGER_LRADCS_OFFSET) |
|
|
((1 << 3) << LRADC_DELAY_TRIGGER_DELAYS_OFFSET) |
|
|
100, ®s->hw_lradc_delay3);
|
|
|
|
writel(0xffffffff, ®s->hw_lradc_ch7_clr);
|
|
writel(LRADC_DELAY_KICK, ®s->hw_lradc_delay3_set);
|
|
|
|
debug("SPL: LRADC channel 7 configuration complete\n");
|
|
}
|