52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2011-2012, The Linux Foundation. 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 version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
*/
|
|
/*
|
|
* Qualcomm PMIC 8821 driver header file
|
|
*
|
|
*/
|
|
|
|
#ifndef __MFD_PM8821_H
|
|
#define __MFD_PM8821_H
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/mfd/pm8xxx/pm8821-irq.h>
|
|
#include <linux/mfd/pm8xxx/mpp.h>
|
|
#include <linux/mfd/pm8xxx/tm.h>
|
|
|
|
#define PM8821_NR_IRQS (112)
|
|
#define PM8821_NR_MPPS (4)
|
|
|
|
#define PM8821_MPP_BLOCK_START (4)
|
|
|
|
/*
|
|
* Block 0 does not exist in PM8821 IRQ SSBI address space,
|
|
* IRQ0 is assigned to bit0 of block1
|
|
*/
|
|
#define PM8821_IRQ_BLOCK_BIT(block, bit) ((block-1) * 8 + (bit))
|
|
|
|
/* MPPs [1,N] */
|
|
#define PM8821_MPP_IRQ(base, mpp) ((base) + \
|
|
PM8821_IRQ_BLOCK_BIT(PM8821_MPP_BLOCK_START, (mpp)-1))
|
|
|
|
/* PMIC Interrupts */
|
|
#define PM8821_OVERTEMP_IRQ PM8821_IRQ_BLOCK_BIT(5, 2)
|
|
#define PM8821_TEMPSTAT_IRQ PM8821_IRQ_BLOCK_BIT(5, 7)
|
|
|
|
struct pm8821_platform_data {
|
|
int irq_base;
|
|
struct pm8xxx_irq_platform_data *irq_pdata;
|
|
struct pm8xxx_mpp_platform_data *mpp_pdata;
|
|
};
|
|
|
|
#endif
|