aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-core.c')
-rw-r--r--target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-core.c1301
1 files changed, 0 insertions, 1301 deletions
diff --git a/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-core.c b/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-core.c
deleted file mode 100644
index 10f2c7a2af..0000000000
--- a/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-core.c
+++ /dev/null
@@ -1,1301 +0,0 @@
-/* Smedia Glamo 336x/337x driver
- *
- * (C) 2007 by Openmoko, Inc.
- * Author: Harald Welte <laforge@openmoko.org>
- * 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.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
-
-#include <linux/module.h>
-#include <linux/kernel.h>
-#include <linux/errno.h>
-#include <linux/string.h>
-#include <linux/mm.h>
-#include <linux/delay.h>
-#include <linux/fb.h>
-#include <linux/init.h>
-#include <linux/irq.h>
-#include <linux/interrupt.h>
-#include <linux/workqueue.h>
-#include <linux/platform_device.h>
-#include <linux/kernel_stat.h>
-#include <linux/spinlock.h>
-#include <linux/mfd/core.h>
-#include <linux/mfd/glamo.h>
-#include <linux/glamofb.h>
-#include <linux/io.h>
-
-#include <asm/div64.h>
-
-#include <linux/pm.h>
-
-#include "glamo-regs.h"
-#include "glamo-core.h"
-
-#define GLAMO_MEM_REFRESH_COUNT 0x100
-
-/*
- * Glamo internal settings
- *
- * We run the memory interface from the faster PLLB on 2.6.28 kernels and
- * above. Couple of GTA02 users report trouble with memory bus when they
- * upgraded from 2.6.24. So this parameter allows reversion to 2.6.24
- * scheme if their Glamo chip needs it.
- *
- * you can override the faster default on kernel commandline using
- *
- * glamo3362.slow_memory=1
- *
- * for example
- */
-
-static int slow_memory = 0;
-module_param(slow_memory, int, 0644);
-
-struct reg_range {
- int start;
- int count;
- char *name;
- char dump;
-};
-
-struct reg_range reg_range[] = {
- { 0x0000, 0x76, "General", 1 },
- { 0x0200, 0x18, "Host Bus", 1 },
- { 0x0300, 0x38, "Memory", 1 },
-/* { 0x0400, 0x100, "Sensor", 0 }, */
-/* { 0x0500, 0x300, "ISP", 0 }, */
-/* { 0x0800, 0x400, "JPEG", 0 }, */
-/* { 0x0c00, 0xcc, "MPEG", 0 }, */
- { 0x1100, 0xb2, "LCD 1", 1 },
- { 0x1200, 0x64, "LCD 2", 1 },
- { 0x1400, 0x42, "MMC", 1 },
-/* { 0x1500, 0x080, "MPU 0", 0 },
- { 0x1580, 0x080, "MPU 1", 0 },
- { 0x1600, 0x080, "Cmd Queue", 0 },
- { 0x1680, 0x080, "RISC CPU", 0 },*/
- { 0x1700, 0x400, "2D Unit", 0 },
-/* { 0x1b00, 0x900, "3D Unit", 0 }, */
-};
-
-static inline void __reg_write(struct glamo_core *glamo,
- u_int16_t reg, u_int16_t val)
-{
- writew(val, glamo->base + reg);
-}
-
-static inline u_int16_t __reg_read(struct glamo_core *glamo,
- u_int16_t reg)
-{
- return readw(glamo->base + reg);
-}
-
-static void __reg_set_bit_mask(struct glamo_core *glamo,
- u_int16_t reg, u_int16_t mask,
- u_int16_t val)
-{
- u_int16_t tmp;
-
- val &= mask;
-
- tmp = __reg_read(glamo, reg);
- tmp &= ~mask;
- tmp |= val;
- __reg_write(glamo, reg, tmp);
-}
-
-static void reg_set_bit_mask(struct glamo_core *glamo,
- u_int16_t reg, u_int16_t mask,
- u_int16_t val)
-{
- spin_lock(&glamo->lock);
- __reg_set_bit_mask(glamo, reg, mask, val);
- spin_unlock(&glamo->lock);
-}
-
-static inline void __reg_set_bit(struct glamo_core *glamo,
- u_int16_t reg, u_int16_t bit)
-{
- __reg_set_bit_mask(glamo, reg, bit, 0xffff);
-}
-
-static inline void __reg_clear_bit(struct glamo_core *glamo,
- u_int16_t reg, u_int16_t bit)
-{
- __reg_set_bit_mask(glamo, reg, bit, 0);
-}
-
-/***********************************************************************
- * resources of sibling devices
- ***********************************************************************/
-
-static struct resource glamo_fb_resources[] = {
- {
- .name = "glamo-fb-regs",
- .start = GLAMO_REGOFS_LCD,
- .end = GLAMO_REGOFS_MMC - 1,
- .flags = IORESOURCE_MEM,
- }, {
- .name = "glamo-fb-mem",
- .start = GLAMO_OFFSET_FB,
- .end = GLAMO_OFFSET_FB + GLAMO_FB_SIZE - 1,
- .flags = IORESOURCE_MEM,
- },
-};
-
-static struct resource glamo_mmc_resources[] = {
- {
- .start = GLAMO_REGOFS_MMC,
- .end = GLAMO_REGOFS_MPROC0 - 1,
- .flags = IORESOURCE_MEM
- }, {
- .start = IRQ_GLAMO_MMC,
- .end = IRQ_GLAMO_MMC,
- .flags = IORESOURCE_IRQ,
- }, { /* our data buffer for MMC transfers */
- .start = GLAMO_OFFSET_FB + GLAMO_FB_SIZE,
- .end = GLAMO_OFFSET_FB + GLAMO_FB_SIZE +
- GLAMO_MMC_BUFFER_SIZE - 1,
- .flags = IORESOURCE_MEM
- },
-};
-
-enum glamo_cells {
- GLAMO_CELL_FB,
- GLAMO_CELL_MMC,
- GLAMO_CELL_GPIO,
-};
-
-static struct mfd_cell glamo_cells[] = {
- [GLAMO_CELL_FB] = {
- .name = "glamo-fb",
- .num_resources = ARRAY_SIZE(glamo_fb_resources),
- .resources = glamo_fb_resources,
- },
- [GLAMO_CELL_MMC] = {
- .name = "glamo-mci",
- .num_resources = ARRAY_SIZE(glamo_mmc_resources),
- .resources = glamo_mmc_resources,
- },
- [GLAMO_CELL_GPIO] = {
- .name = "glamo-gpio",
- },
-};
-
-
-/***********************************************************************
- * IRQ demultiplexer
- ***********************************************************************/
-#define irq2glamo(x) (x - IRQ_GLAMO(0))
-
-static void glamo_ack_irq(unsigned int irq)
-{
- struct glamo_core *glamo = (struct glamo_core*)get_irq_chip_data(irq);
- /* clear interrupt source */
- __reg_write(glamo, GLAMO_REG_IRQ_CLEAR,
- 1 << irq2glamo(irq));
-}
-
-static void glamo_mask_irq(unsigned int irq)
-{
- struct glamo_core *glamo = (struct glamo_core*)get_irq_chip_data(irq);
- u_int16_t tmp;
-
- /* clear bit in enable register */
- tmp = __reg_read(glamo, GLAMO_REG_IRQ_ENABLE);
- tmp &= ~(1 << irq2glamo(irq));
- __reg_write(glamo, GLAMO_REG_IRQ_ENABLE, tmp);
-}
-
-static void glamo_unmask_irq(unsigned int irq)
-{
- struct glamo_core *glamo = (struct glamo_core*)get_irq_chip_data(irq);
- u_int16_t tmp;
-
- /* set bit in enable register */
- tmp = __reg_read(glamo, GLAMO_REG_IRQ_ENABLE);
- tmp |= (1 << irq2glamo(irq));
- __reg_write(glamo, GLAMO_REG_IRQ_ENABLE, tmp);
-}
-
-static struct irq_chip glamo_irq_chip = {
- .name = "glamo",
- .ack = glamo_ack_irq,
- .mask = glamo_mask_irq,
- .unmask = glamo_unmask_irq,
-};
-
-static void glamo_irq_demux_handler(unsigned int irq, struct irq_desc *desc)
-{
- struct glamo_core *glamo = get_irq_desc_chip_data(desc);
- desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
-
- if (unlikely(desc->status & IRQ_INPROGRESS)) {
- desc->status |= (IRQ_PENDING | IRQ_MASKED);
- desc->chip->mask(irq);
- desc->chip->ack(irq);
- return;
- }
- kstat_incr_irqs_this_cpu(irq, desc);
-
- desc->chip->ack(irq);
- desc->status |= IRQ_INPROGRESS;
-
- do {
- u_int16_t irqstatus;
- int i;
-
- if (unlikely((desc->status &
- (IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
- (IRQ_PENDING | IRQ_MASKED))) {
- /* dealing with pending IRQ, unmasking */
- desc->chip->unmask(irq);
- desc->status &= ~IRQ_MASKED;
- }
-
- desc->status &= ~IRQ_PENDING;
-
- /* read IRQ status register */
- irqstatus = __reg_read(glamo, GLAMO_REG_IRQ_STATUS);
- for (i = 0; i < 9; i++)
- if (irqstatus & (1 << i))
- desc_handle_irq(IRQ_GLAMO(i),
- irq_desc+IRQ_GLAMO(i));
-
- } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING);
-
- desc->status &= ~IRQ_INPROGRESS;
-}
-
-
-static ssize_t regs_write(struct device *dev, struct device_attribute *attr,
- const char *buf, size_t count)
-{
- unsigned long reg = simple_strtoul(buf, NULL, 10);
- struct glamo_core *glamo = dev_get_drvdata(dev);
-
- while (*buf && (*buf != ' '))
- buf++;
- if (*buf != ' ')
- return -EINVAL;
- while (*buf && (*buf == ' '))
- buf++;
- if (!*buf)
- return -EINVAL;
-
- printk(KERN_INFO"reg 0x%02lX <-- 0x%04lX\n",
- reg, simple_strtoul(buf, NULL, 10));
-
- __reg_write(glamo, reg, simple_strtoul(buf, NULL, 10));
-
- return count;
-}
-
-static ssize_t regs_read(struct device *dev, struct device_attribute *attr,
- char *buf)
-{
- struct glamo_core *glamo = dev_get_drvdata(dev);
- int n, n1 = 0, r;
- char * end = buf;
-
- spin_lock(&glamo->lock);
-
- for (r = 0; r < ARRAY_SIZE(reg_range); r++) {
- if (!reg_range[r].dump)
- continue;
- n1 = 0;
- end += sprintf(end, "\n%s\n", reg_range[r].name);
- for (n = reg_range[r].start;
- n < reg_range[r].start + reg_range[r].count; n += 2) {
- if (((n1++) & 7) == 0)
- end += sprintf(end, "\n%04X: ", n);
- end += sprintf(end, "%04x ", __reg_read(glamo, n));
- }
- end += sprintf(end, "\n");
- if (!attr) {
- printk("%s", buf);
- end = buf;
- }
- }
- spin_unlock(&glamo->lock);
-
- return end - buf;
-}
-
-static DEVICE_ATTR(regs, 0644, regs_read, regs_write);
-static struct attribute *glamo_sysfs_entries[] = {
- &dev_attr_regs.attr,
- NULL
-};
-static struct attribute_group glamo_attr_group = {
- .name = NULL,
- .attrs = glamo_sysfs_entries,
-};
-
-
-
-/***********************************************************************
- * 'engine' support
- ***********************************************************************/
-
-int __glamo_engine_enable(struct glamo_core *glamo, enum glamo_engine engine)
-{
- switch (engine) {
- case GLAMO_ENGINE_LCD:
- __reg_set_bit_mask(glamo, GLAMO_REG_HOSTBUS(2),
- GLAMO_HOSTBUS2_MMIO_EN_LCD,
- GLAMO_HOSTBUS2_MMIO_EN_LCD);
- __reg_write(glamo, GLAMO_REG_CLOCK_LCD,
- GLAMO_CLOCK_LCD_EN_M5CLK |
- GLAMO_CLOCK_LCD_EN_DHCLK |
- GLAMO_CLOCK_LCD_EN_DMCLK |
- GLAMO_CLOCK_LCD_EN_DCLK |
- GLAMO_CLOCK_LCD_DG_M5CLK |
- GLAMO_CLOCK_LCD_DG_DMCLK);
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_DHCLK |
- GLAMO_CLOCK_GEN51_EN_DIV_DMCLK |
- GLAMO_CLOCK_GEN51_EN_DIV_DCLK, 0xffff);
- break;
- case GLAMO_ENGINE_MMC:
- __reg_set_bit_mask(glamo, GLAMO_REG_HOSTBUS(2),
- GLAMO_HOSTBUS2_MMIO_EN_MMC,
- GLAMO_HOSTBUS2_MMIO_EN_MMC);
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_MMC,
- GLAMO_CLOCK_MMC_EN_M9CLK |
- GLAMO_CLOCK_MMC_EN_TCLK |
- GLAMO_CLOCK_MMC_DG_M9CLK |
- GLAMO_CLOCK_MMC_DG_TCLK,
- 0xffff);
- /* enable the TCLK divider clk input */
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_TCLK,
- GLAMO_CLOCK_GEN51_EN_DIV_TCLK);
- break;
- case GLAMO_ENGINE_2D:
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_2D,
- GLAMO_CLOCK_2D_EN_M7CLK |
- GLAMO_CLOCK_2D_EN_GCLK |
- GLAMO_CLOCK_2D_DG_M7CLK |
- GLAMO_CLOCK_2D_DG_GCLK, 0xffff);
- __reg_set_bit_mask(glamo, GLAMO_REG_HOSTBUS(2),
- GLAMO_HOSTBUS2_MMIO_EN_2D,
- GLAMO_HOSTBUS2_MMIO_EN_2D);
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_GCLK,
- 0xffff);
- break;
- case GLAMO_ENGINE_CMDQ:
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_2D,
- GLAMO_CLOCK_2D_EN_M6CLK, 0xffff);
- __reg_set_bit_mask(glamo, GLAMO_REG_HOSTBUS(2),
- GLAMO_HOSTBUS2_MMIO_EN_CQ,
- GLAMO_HOSTBUS2_MMIO_EN_CQ);
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_MCLK,
- 0xffff);
- break;
- /* FIXME: Implementation */
- default:
- return -EINVAL;
- }
-
- glamo->engine_enabled_bitfield |= 1 << engine;
-
- return 0;
-}
-
-int glamo_engine_enable(struct glamo_core *glamo, enum glamo_engine engine)
-{
- int ret;
-
- spin_lock(&glamo->lock);
-
- ret = __glamo_engine_enable(glamo, engine);
-
- spin_unlock(&glamo->lock);
-
- return ret;
-}
-EXPORT_SYMBOL_GPL(glamo_engine_enable);
-
-int __glamo_engine_disable(struct glamo_core *glamo, enum glamo_engine engine)
-{
- switch (engine) {
- case GLAMO_ENGINE_LCD:
- /* remove pixel clock to LCM */
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_LCD,
- GLAMO_CLOCK_LCD_EN_DCLK, 0);
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_LCD,
- GLAMO_CLOCK_LCD_EN_DHCLK |
- GLAMO_CLOCK_LCD_EN_DMCLK, 0);
- /* kill memory clock */
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_LCD,
- GLAMO_CLOCK_LCD_EN_M5CLK, 0);
- /* stop dividing the clocks */
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_DHCLK |
- GLAMO_CLOCK_GEN51_EN_DIV_DMCLK |
- GLAMO_CLOCK_GEN51_EN_DIV_DCLK, 0);
- break;
-
- case GLAMO_ENGINE_MMC:
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_MMC,
- GLAMO_CLOCK_MMC_EN_M9CLK |
- GLAMO_CLOCK_MMC_EN_TCLK |
- GLAMO_CLOCK_MMC_DG_M9CLK |
- GLAMO_CLOCK_MMC_DG_TCLK, 0);
- /* disable the TCLK divider clk input */
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_TCLK, 0);
- break;
- case GLAMO_ENGINE_CMDQ:
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_2D,
- GLAMO_CLOCK_2D_EN_M6CLK,
- 0);
- __reg_set_bit_mask(glamo, GLAMO_REG_HOSTBUS(2),
- GLAMO_HOSTBUS2_MMIO_EN_CQ,
- GLAMO_HOSTBUS2_MMIO_EN_CQ);
-/* __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_MCLK,
- 0);*/
- break;
- case GLAMO_ENGINE_2D:
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_2D,
- GLAMO_CLOCK_2D_EN_M7CLK |
- GLAMO_CLOCK_2D_EN_GCLK |
- GLAMO_CLOCK_2D_DG_M7CLK |
- GLAMO_CLOCK_2D_DG_GCLK,
- 0);
- __reg_set_bit_mask(glamo, GLAMO_REG_HOSTBUS(2),
- GLAMO_HOSTBUS2_MMIO_EN_2D,
- GLAMO_HOSTBUS2_MMIO_EN_2D);
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1,
- GLAMO_CLOCK_GEN51_EN_DIV_GCLK,
- 0);
- break;
- default:
- return -EINVAL;
- }
-
- glamo->engine_enabled_bitfield &= ~(1 << engine);
-
- return 0;
-}
-int glamo_engine_disable(struct glamo_core *glamo, enum glamo_engine engine)
-{
- int ret;
-
- spin_lock(&glamo->lock);
-
- ret = __glamo_engine_disable(glamo, engine);
-
- spin_unlock(&glamo->lock);
-
- return ret;
-}
-EXPORT_SYMBOL_GPL(glamo_engine_disable);
-
-static const u_int16_t engine_clock_regs[__NUM_GLAMO_ENGINES] = {
- [GLAMO_ENGINE_LCD] = GLAMO_REG_CLOCK_LCD,
- [GLAMO_ENGINE_MMC] = GLAMO_REG_CLOCK_MMC,
- [GLAMO_ENGINE_ISP] = GLAMO_REG_CLOCK_ISP,
- [GLAMO_ENGINE_JPEG] = GLAMO_REG_CLOCK_JPEG,
- [GLAMO_ENGINE_3D] = GLAMO_REG_CLOCK_3D,
- [GLAMO_ENGINE_2D] = GLAMO_REG_CLOCK_2D,
- [GLAMO_ENGINE_MPEG_ENC] = GLAMO_REG_CLOCK_MPEG,
- [GLAMO_ENGINE_MPEG_DEC] = GLAMO_REG_CLOCK_MPEG,
-};
-
-void glamo_engine_clkreg_set(struct glamo_core *glamo,
- enum glamo_engine engine,
- u_int16_t mask, u_int16_t val)
-{
- reg_set_bit_mask(glamo, engine_clock_regs[engine], mask, val);
-}
-EXPORT_SYMBOL_GPL(glamo_engine_clkreg_set);
-
-u_int16_t glamo_engine_clkreg_get(struct glamo_core *glamo,
- enum glamo_engine engine)
-{
- u_int16_t val;
-
- spin_lock(&glamo->lock);
- val = __reg_read(glamo, engine_clock_regs[engine]);
- spin_unlock(&glamo->lock);
-
- return val;
-}
-EXPORT_SYMBOL_GPL(glamo_engine_clkreg_get);
-
-static const struct glamo_script engine_div_regs[__NUM_GLAMO_ENGINES] = {
- [GLAMO_ENGINE_LCD] = {GLAMO_REG_CLOCK_GEN5_1, GLAMO_CLOCK_GEN51_EN_DIV_DCLK},
- [GLAMO_ENGINE_MMC] = {GLAMO_REG_CLOCK_GEN5_1, GLAMO_CLOCK_GEN51_EN_DIV_TCLK},
- [GLAMO_ENGINE_2D] = {GLAMO_REG_CLOCK_GEN5_1, GLAMO_CLOCK_GEN51_EN_DIV_GCLK},
-};
-
-void glamo_engine_div_enable(struct glamo_core *glamo, enum glamo_engine engine)
-{
- uint16_t reg = engine_div_regs[engine].reg;
- uint16_t bit = engine_div_regs[engine].val;
- uint16_t val;
-
- spin_lock(&glamo->lock);
- val = __reg_read(glamo, reg);
- __reg_write(glamo, reg, val | bit);
- spin_unlock(&glamo->lock);
- mdelay(5);
-}
-EXPORT_SYMBOL_GPL(glamo_engine_div_enable);
-
-void glamo_engine_div_disable(struct glamo_core *glamo, enum glamo_engine engine)
-{
- uint16_t reg = engine_div_regs[engine].reg;
- uint16_t bit = engine_div_regs[engine].val;
- uint16_t val;
-
- spin_lock(&glamo->lock);
- val = __reg_read(glamo, reg);
- __reg_write(glamo, reg, val & ~bit);
- spin_unlock(&glamo->lock);
-}
-EXPORT_SYMBOL_GPL(glamo_engine_div_disable);
-
-static const struct glamo_script reset_regs[] = {
- [GLAMO_ENGINE_LCD] = {
- GLAMO_REG_CLOCK_LCD, GLAMO_CLOCK_LCD_RESET
- },
-#if 0
- [GLAMO_ENGINE_HOST] = {
- GLAMO_REG_CLOCK_HOST, GLAMO_CLOCK_HOST_RESET
- },
- [GLAMO_ENGINE_MEM] = {
- GLAMO_REG_CLOCK_MEM, GLAMO_CLOCK_MEM_RESET
- },
-#endif
- [GLAMO_ENGINE_MMC] = {
- GLAMO_REG_CLOCK_MMC, GLAMO_CLOCK_MMC_RESET
- },
- [GLAMO_ENGINE_CMDQ] = {
- GLAMO_REG_CLOCK_2D, GLAMO_CLOCK_2D_CQ_RESET
- },
- [GLAMO_ENGINE_2D] = {
- GLAMO_REG_CLOCK_2D, GLAMO_CLOCK_2D_RESET
- },
- [GLAMO_ENGINE_JPEG] = {
- GLAMO_REG_CLOCK_JPEG, GLAMO_CLOCK_JPEG_RESET
- },
-};
-
-void glamo_engine_reset(struct glamo_core *glamo, enum glamo_engine engine)
-{
- uint16_t reg = reset_regs[engine].reg;
- uint16_t val = reset_regs[engine].val;
-
- if (engine >= ARRAY_SIZE(reset_regs)) {
- dev_warn(&glamo->pdev->dev, "unknown engine %u ", engine);
- return;
- }
-
-
- spin_lock(&glamo->lock);
- __reg_set_bit(glamo, reg, val);
- __reg_clear_bit(glamo, reg, val);
- spin_unlock(&glamo->lock);
-}
-EXPORT_SYMBOL_GPL(glamo_engine_reset);
-
-int glamo_pll_rate(struct glamo_core *glamo,
- enum glamo_pll pll)
-{
- u_int16_t reg;
- unsigned int osci = glamo->pdata->osci_clock_rate;
-
- switch (pll) {
- case GLAMO_PLL1:
- reg = __reg_read(glamo, GLAMO_REG_PLL_GEN1);
- break;
- case GLAMO_PLL2:
- reg = __reg_read(glamo, GLAMO_REG_PLL_GEN3);
- break;
- default:
- return -EINVAL;
- }
- return osci*reg;
-}
-EXPORT_SYMBOL_GPL(glamo_pll_rate);
-
-int glamo_engine_reclock(struct glamo_core *glamo,
- enum glamo_engine engine,
- int hz)
-{
- int pll;
- u_int16_t reg, mask, div;
-
- if (!hz)
- return -EINVAL;
-
- switch (engine) {
- case GLAMO_ENGINE_LCD:
- pll = GLAMO_PLL1;
- reg = GLAMO_REG_CLOCK_GEN7;
- mask = 0xff;
- break;
- case GLAMO_ENGINE_MMC:
- pll = GLAMO_PLL1;
- reg = GLAMO_REG_CLOCK_GEN8;
- mask = 0xff;
- break;
- default:
- dev_warn(&glamo->pdev->dev,
- "reclock of engine 0x%x not supported\n", engine);
- return -EINVAL;
- break;
- }
-
- pll = glamo_pll_rate(glamo, pll);
-
- div = pll / hz;
-
- if (div != 0 && pll / div <= hz)
- --div;
-
- if (div > mask)
- div = mask;
-
- dev_dbg(&glamo->pdev->dev,
- "PLL %d, kHZ %d, div %d\n", pll, hz / 1000, div);
-
- reg_set_bit_mask(glamo, reg, mask, div);
- mdelay(5); /* wait some time to stabilize */
-
- return pll / (div + 1);
-}
-EXPORT_SYMBOL_GPL(glamo_engine_reclock);
-
-/***********************************************************************
- * script support
- ***********************************************************************/
-
-int glamo_run_script(struct glamo_core *glamo, const struct glamo_script *script,
- int len, int may_sleep)
-{
- int i;
- const struct glamo_script *line = script;
-
- for (i = 0; i < len; ++i, ++line) {
- switch (line->reg) {
- case 0xffff:
- return 0;
- case 0xfffe:
- if (may_sleep)
- msleep(line->val);
- else
- mdelay(line->val * 4);
- break;
- case 0xfffd:
- /* spin until PLLs lock */
- while ((__reg_read(glamo, GLAMO_REG_PLL_GEN5) & 3) != 3)
- ;
- break;
-
- /*
- * couple of people reported artefacts with 2.6.28 changes, this
- * allows reversion to 2.6.24 settings
- */
-
- case 0x200:
- switch (slow_memory) {
- /* choice 1 is the most conservative */
- case 1: /* 3 waits on Async BB R & W, Use PLL 1 for mem bus */
- __reg_write(glamo, script[i].reg, 0xef0);
- break;
- case 2: /* 2 waits on Async BB R & W, Use PLL 1 for mem bus */
- __reg_write(glamo, script[i].reg, 0xea0);
- break;
- case 3: /* 1 waits on Async BB R & W, Use PLL 1 for mem bus */
- __reg_write(glamo, script[i].reg, 0xe50);
- break;
- case 4: /* 0 waits on Async BB R & W, Use PLL 1 for mem bus */
- __reg_write(glamo, script[i].reg, 0xe00);
- break;
-
- /* using PLL2 for memory bus increases CPU bandwidth significantly */
- case 5: /* 3 waits on Async BB R & W, Use PLL 2 for mem bus */
- __reg_write(glamo, script[i].reg, 0xef3);
- break;
- case 6: /* 2 waits on Async BB R & W, Use PLL 2 for mem bus */
- __reg_write(glamo, script[i].reg, 0xea3);
- break;
- case 7: /* 1 waits on Async BB R & W, Use PLL 2 for mem bus */
- __reg_write(glamo, script[i].reg, 0xe53);
- break;
- /* default of 0 or >7 is fastest */
- default: /* 0 waits on Async BB R & W, Use PLL 2 for mem bus */
- __reg_write(glamo, script[i].reg, 0xe03);
- break;
- }
- break;
-
- default:
- __reg_write(glamo, script[i].reg, script[i].val);
- break;
- }
- }
-
- return 0;
-}
-EXPORT_SYMBOL(glamo_run_script);
-
-static const struct glamo_script glamo_init_script[] = {
- { GLAMO_REG_CLOCK_HOST, 0x1000 },
- { 0xfffe, 2 },
- { GLAMO_REG_CLOCK_MEMORY, 0x1000 },
- { GLAMO_REG_CLOCK_MEMORY, 0x2000 },
- { GLAMO_REG_CLOCK_LCD, 0x1000 },
- { GLAMO_REG_CLOCK_MMC, 0x1000 },
- { GLAMO_REG_CLOCK_ISP, 0x1000 },
- { GLAMO_REG_CLOCK_ISP, 0x3000 },
- { GLAMO_REG_CLOCK_JPEG, 0x1000 },
- { GLAMO_REG_CLOCK_3D, 0x1000 },
- { GLAMO_REG_CLOCK_3D, 0x3000 },
- { GLAMO_REG_CLOCK_2D, 0x1000 },
- { GLAMO_REG_CLOCK_2D, 0x3000 },
- { GLAMO_REG_CLOCK_RISC1, 0x1000 },
- { GLAMO_REG_CLOCK_MPEG, 0x3000 },
- { GLAMO_REG_CLOCK_MPEG, 0x3000 },
- { GLAMO_REG_CLOCK_MPROC, 0x1000 /*0x100f*/ },
- { 0xfffe, 2 },
- { GLAMO_REG_CLOCK_HOST, 0x0000 },
- { GLAMO_REG_CLOCK_MEMORY, 0x0000 },
- { GLAMO_REG_CLOCK_LCD, 0x0000 },
- { GLAMO_REG_CLOCK_MMC, 0x0000 },
-#if 0
-/* unused engines must be left in reset to stop MMC block read "blackouts" */
- { GLAMO_REG_CLOCK_ISP, 0x0000 },
- { GLAMO_REG_CLOCK_ISP, 0x0000 },
- { GLAMO_REG_CLOCK_JPEG, 0x0000 },
- { GLAMO_REG_CLOCK_3D, 0x0000 },
- { GLAMO_REG_CLOCK_3D, 0x0000 },
- { GLAMO_REG_CLOCK_2D, 0x0000 },
- { GLAMO_REG_CLOCK_2D, 0x0000 },
- { GLAMO_REG_CLOCK_RISC1, 0x0000 },
- { GLAMO_REG_CLOCK_MPEG, 0x0000 },
- { GLAMO_REG_CLOCK_MPEG, 0x0000 },
-#endif
- { GLAMO_REG_PLL_GEN1, 0x05db }, /* 48MHz */
- { GLAMO_REG_PLL_GEN3, 0x0aba }, /* 90MHz */
- { 0xfffd, 0 },
- /*
- * b9 of this register MUST be zero to get any interrupts on INT#
- * the other set bits enable all the engine interrupt sources
- */
- { GLAMO_REG_IRQ_ENABLE, 0x01ff },
- { GLAMO_REG_CLOCK_GEN6, 0x2000 },
- { GLAMO_REG_CLOCK_GEN7, 0x0101 },
- { GLAMO_REG_CLOCK_GEN8, 0x0100 },
- { GLAMO_REG_CLOCK_HOST, 0x000d },
- /*
- * b7..b4 = 0 = no wait states on read or write
- * b0 = 1 select PLL2 for Host interface, b1 = enable it
- */
- { 0x200, 0x0e03 /* this is replaced by script parser */ },
- { 0x202, 0x07ff },
- { 0x212, 0x0000 },
- { 0x214, 0x4000 },
- { 0x216, 0xf00e },
-
- /* S-Media recommended "set tiling mode to 512 mode for memory access
- * more efficiency when 640x480" */
- { GLAMO_REG_MEM_TYPE, 0x0c74 }, /* 8MB, 16 word pg wr+rd */
- { GLAMO_REG_MEM_GEN, 0xafaf }, /* 63 grants min + max */
-
- { GLAMO_REGOFS_HOSTBUS + 2, 0xffff }, /* enable on MMIO*/
-
- { GLAMO_REG_MEM_TIMING1, 0x0108 },
- { GLAMO_REG_MEM_TIMING2, 0x0010 }, /* Taa = 3 MCLK */
- { GLAMO_REG_MEM_TIMING3, 0x0000 },
- { GLAMO_REG_MEM_TIMING4, 0x0000 }, /* CE1# delay fall/rise */
- { GLAMO_REG_MEM_TIMING5, 0x0000 }, /* UB# LB# */
- { GLAMO_REG_MEM_TIMING6, 0x0000 }, /* OE# */
- { GLAMO_REG_MEM_TIMING7, 0x0000 }, /* WE# */
- { GLAMO_REG_MEM_TIMING8, 0x1002 }, /* MCLK delay, was 0x1000 */
- { GLAMO_REG_MEM_TIMING9, 0x6006 },
- { GLAMO_REG_MEM_TIMING10, 0x00ff },
- { GLAMO_REG_MEM_TIMING11, 0x0001 },
- { GLAMO_REG_MEM_POWER1, 0x0020 },
- { GLAMO_REG_MEM_POWER2, 0x0000 },
- { GLAMO_REG_MEM_DRAM1, 0x0000 },
- { 0xfffe, 1 },
- { GLAMO_REG_MEM_DRAM1, 0xc100 },
- { 0xfffe, 1 },
- { GLAMO_REG_MEM_DRAM1, 0xe100 },
- { GLAMO_REG_MEM_DRAM2, 0x01d6 },
- { GLAMO_REG_CLOCK_MEMORY, 0x000b },
-};
-#if 0
-static struct glamo_script glamo_resume_script[] = {
-
- { GLAMO_REG_PLL_GEN1, 0x05db }, /* 48MHz */
- { GLAMO_REG_PLL_GEN3, 0x0aba }, /* 90MHz */
- { GLAMO_REG_DFT_GEN6, 1 },
- { 0xfffe, 100 },
- { 0xfffd, 0 },
- { 0x200, 0x0e03 },
-
- /*
- * b9 of this register MUST be zero to get any interrupts on INT#
- * the other set bits enable all the engine interrupt sources
- */
- { GLAMO_REG_IRQ_ENABLE, 0x01ff },
- { GLAMO_REG_CLOCK_HOST, 0x0018 },
- { GLAMO_REG_CLOCK_GEN5_1, 0x18b1 },
-
- { GLAMO_REG_MEM_DRAM1, 0x0000 },
- { 0xfffe, 1 },
- { GLAMO_REG_MEM_DRAM1, 0xc100 },
- { 0xfffe, 1 },
- { GLAMO_REG_MEM_DRAM1, 0xe100 },
- { GLAMO_REG_MEM_DRAM2, 0x01d6 },
- { GLAMO_REG_CLOCK_MEMORY, 0x000b },
-};
-#endif
-
-enum glamo_power {
- GLAMO_POWER_ON,
- GLAMO_POWER_SUSPEND,
-};
-
-static void glamo_power(struct glamo_core *glamo,
- enum glamo_power new_state)
-{
- int n;
- unsigned long flags;
-
- spin_lock_irqsave(&glamo->lock, flags);
-
- dev_info(&glamo->pdev->dev, "***** glamo_power -> %d\n", new_state);
-
- /*
-Power management
-static const REG_VALUE_MASK_TYPE reg_powerOn[] =
-{
- { REG_GEN_DFT6, REG_BIT_ALL, REG_DATA(1u << 0) },
- { REG_GEN_PLL3, 0u, REG_DATA(1u << 13) },
- { REG_GEN_MEM_CLK, REG_BIT_ALL, REG_BIT_EN_MOCACLK },
- { REG_MEM_DRAM2, 0u, REG_BIT_EN_DEEP_POWER_DOWN },
- { REG_MEM_DRAM1, 0u, REG_BIT_SELF_REFRESH }
-};
-
-static const REG_VALUE_MASK_TYPE reg_powerStandby[] =
-{
- { REG_MEM_DRAM1, REG_BIT_ALL, REG_BIT_SELF_REFRESH },
- { REG_GEN_MEM_CLK, 0u, REG_BIT_EN_MOCACLK },
- { REG_GEN_PLL3, REG_BIT_ALL, REG_DATA(1u << 13) },
- { REG_GEN_DFT5, REG_BIT_ALL, REG_DATA(1u << 0) }
-};
-
-static const REG_VALUE_MASK_TYPE reg_powerSuspend[] =
-{
- { REG_MEM_DRAM2, REG_BIT_ALL, REG_BIT_EN_DEEP_POWER_DOWN },
- { REG_GEN_MEM_CLK, 0u, REG_BIT_EN_MOCACLK },
- { REG_GEN_PLL3, REG_BIT_ALL, REG_DATA(1u << 13) },
- { REG_GEN_DFT5, REG_BIT_ALL, REG_DATA(1u << 0) }
-};
-*/
-
- switch (new_state) {
- case GLAMO_POWER_ON:
-
- /*
- * glamo state on resume is nondeterministic in some
- * fundamental way, it has also been observed that the
- * Glamo reset pin can get asserted by, eg, touching it with
- * a scope probe. So the only answer is to roll with it and
- * force an external reset on the Glamo during resume.
- */
-
- (glamo->pdata->glamo_external_reset)(0);
- udelay(10);
- (glamo->pdata->glamo_external_reset)(1);
- mdelay(5);
-
- glamo_run_script(glamo, glamo_init_script,
- ARRAY_SIZE(glamo_init_script), 0);
-
- break;
-
- case GLAMO_POWER_SUSPEND:
-
- /* nuke interrupts */
- __reg_write(glamo, GLAMO_REG_IRQ_ENABLE, 0x200);
-
- /* stash a copy of which engines were running */
- glamo->engine_enabled_bitfield_suspend =
- glamo->engine_enabled_bitfield;
-
- /* take down each engine before we kill mem and pll */
- for (n = 0; n < __NUM_GLAMO_ENGINES; n++)
- if (glamo->engine_enabled_bitfield & (1 << n))
- __glamo_engine_disable(glamo, n);
-
- /* enable self-refresh */
-
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1,
- GLAMO_MEM_DRAM1_EN_DRAM_REFRESH |
- GLAMO_MEM_DRAM1_EN_GATE_CKE |
- GLAMO_MEM_DRAM1_SELF_REFRESH |
- GLAMO_MEM_REFRESH_COUNT);
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1,
- GLAMO_MEM_DRAM1_EN_MODEREG_SET |
- GLAMO_MEM_DRAM1_EN_DRAM_REFRESH |
- GLAMO_MEM_DRAM1_EN_GATE_CKE |
- GLAMO_MEM_DRAM1_SELF_REFRESH |
- GLAMO_MEM_REFRESH_COUNT);
-
- /* force RAM into deep powerdown */
-
- __reg_write(glamo, GLAMO_REG_MEM_DRAM2,
- GLAMO_MEM_DRAM2_DEEP_PWRDOWN |
- (7 << 6) | /* tRC */
- (1 << 4) | /* tRP */
- (1 << 2) | /* tRCD */
- 2); /* CAS latency */
-
- /* disable clocks to memory */
- __reg_write(glamo, GLAMO_REG_CLOCK_MEMORY, 0);
-
- /* all dividers from OSCI */
- __reg_set_bit_mask(glamo, GLAMO_REG_CLOCK_GEN5_1, 0x400, 0x400);
-
- /* PLL2 into bypass */
- __reg_set_bit_mask(glamo, GLAMO_REG_PLL_GEN3, 1 << 12, 1 << 12);
-
- __reg_write(glamo, 0x200, 0x0e00);
-
-
- /* kill PLLS 1 then 2 */
- __reg_write(glamo, GLAMO_REG_DFT_GEN5, 0x0001);
- __reg_set_bit_mask(glamo, GLAMO_REG_PLL_GEN3, 1 << 13, 1 << 13);
-
- break;
- }
-
- spin_unlock_irqrestore(&glamo->lock, flags);
-}
-
-#if 0
-#define MEMDETECT_RETRY 6
-static unsigned int detect_memsize(struct glamo_core *glamo)
-{
- int i;
-
- /*static const u_int16_t pattern[] = {
- 0x1111, 0x8a8a, 0x2222, 0x7a7a,
- 0x3333, 0x6a6a, 0x4444, 0x5a5a,
- 0x5555, 0x4a4a, 0x6666, 0x3a3a,
- 0x7777, 0x2a2a, 0x8888, 0x1a1a
- }; */
-
- for (i = 0; i < MEMDETECT_RETRY; i++) {
- switch (glamo->type) {
- case 3600:
- __reg_write(glamo, GLAMO_REG_MEM_TYPE, 0x0072);
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1, 0xc100);
- break;
- case 3650:
- switch (glamo->revision) {
- case GLAMO_CORE_REV_A0:
- if (i & 1)
- __reg_write(glamo, GLAMO_REG_MEM_TYPE,
- 0x097a);
- else
- __reg_write(glamo, GLAMO_REG_MEM_TYPE,
- 0x0173);
-
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1, 0x0000);
- msleep(1);
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1, 0xc100);
- break;
- default:
- if (i & 1)
- __reg_write(glamo, GLAMO_REG_MEM_TYPE,
- 0x0972);
- else
- __reg_write(glamo, GLAMO_REG_MEM_TYPE,
- 0x0872);
-
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1, 0x0000);
- msleep(1);
- __reg_write(glamo, GLAMO_REG_MEM_DRAM1, 0xe100);
- break;
- }
- break;
- case 3700:
- /* FIXME */
- default:
- break;
- }
-
-#if 0
- /* FIXME: finish implementation */
- for (j = 0; j < 8; j++) {
- __
-#endif
- }
-
- return 0;
-}
-#endif
-
-/* Find out if we can support this version of the Glamo chip */
-static int glamo_supported(struct glamo_core *glamo)
-{
- u_int16_t dev_id, rev_id; /*, memsize; */
-
- dev_id = __reg_read(glamo, GLAMO_REG_DEVICE_ID);
- rev_id = __reg_read(glamo, GLAMO_REG_REVISION_ID);
-
- switch (dev_id) {
- case 0x3650:
- switch (rev_id) {
- case GLAMO_CORE_REV_A2:
- break;
- case GLAMO_CORE_REV_A0:
- case GLAMO_CORE_REV_A1:
- case GLAMO_CORE_REV_A3:
- dev_warn(&glamo->pdev->dev, "untested core revision "
- "%04x, your mileage may vary\n", rev_id);
- break;
- default:
- dev_warn(&glamo->pdev->dev, "unknown glamo revision "
- "%04x, your mileage may vary\n", rev_id);
- /* maybe should abort ? */
- }
- break;
- case 0x3600:
- case 0x3700:
- default:
- dev_err(&glamo->pdev->dev, "unsupported Glamo device %04x\n",
- dev_id);
- return 0;
- }
-
- dev_dbg(&glamo->pdev->dev, "Detected Glamo core %04x Revision %04x "
- "(%uHz CPU / %uHz Memory)\n", dev_id, rev_id,
- glamo_pll_rate(glamo, GLAMO_PLL1),
- glamo_pll_rate(glamo, GLAMO_PLL2));
-
- return 1;
-}
-
-static int __init glamo_probe(struct platform_device *pdev)
-{
- int rc = 0, irq;
- struct glamo_core *glamo;
-
- glamo = kmalloc(GFP_KERNEL, sizeof(*glamo));
- if (!glamo)
- return -ENOMEM;
-
- spin_lock_init(&glamo->lock);
- glamo->pdev = pdev;
- glamo->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- glamo->irq = platform_get_irq(pdev, 0);
- glamo->pdata = pdev->dev.platform_data;
- if (!glamo->mem || !glamo->pdata) {
- dev_err(&pdev->dev, "platform device with no MEM/PDATA ?\n");
- rc = -ENOENT;
- goto bail_free;
- }
-
- /* register a number of sibling devices whoise IOMEM resources
- * are siblings of pdev's IOMEM resource */
-
- /* only remap the generic, hostbus and memory controller registers */
- glamo->base = ioremap(glamo->mem->start, 0x4000 /*GLAMO_REGOFS_VIDCAP*/);
- if (!glamo->base) {
- dev_err(&pdev->dev, "failed to ioremap() memory region\n");
- goto bail_free;
- }
-
- platform_set_drvdata(pdev, glamo);
-
- (glamo->pdata->glamo_external_reset)(0);
- udelay(10);
- (glamo->pdata->glamo_external_reset)(1);
- mdelay(10);
-
- /*
- * finally set the mfd interrupts up
- * can't do them earlier or sibling probes blow up
- */
-
- for (irq = IRQ_GLAMO(0); irq <= IRQ_GLAMO(8); irq++) {
- set_irq_chip_and_handler(irq, &glamo_irq_chip, handle_level_irq);
- set_irq_flags(irq, IRQF_VALID);
- set_irq_chip_data(irq, glamo);
- }
-
- if (glamo->pdata->glamo_irq_is_wired &&
- !glamo->pdata->glamo_irq_is_wired()) {
- set_irq_chained_handler(glamo->irq, glamo_irq_demux_handler);
- set_irq_type(glamo->irq, IRQ_TYPE_EDGE_FALLING);
- set_irq_chip_data(glamo->irq, glamo);
- dev_info(&pdev->dev, "Glamo interrupt registered\n");
- glamo->irq_works = 1;
- } else {
- dev_err(&pdev->dev, "Glamo interrupt not used\n");
- glamo->irq_works = 0;
- }
-
- /* confirm it isn't insane version */
- if (!glamo_supported(glamo)) {
- dev_err(&pdev->dev, "This Glamo is not supported\n");
- goto bail_irq;
- }
-
- /* sysfs */
- rc = sysfs_create_group(&pdev->dev.kobj, &glamo_attr_group);
- if (rc < 0) {
- dev_err(&pdev->dev, "cannot create sysfs group\n");
- goto bail_irq;
- }
-
- /* init the chip with canned register set */
-
- dev_dbg(&glamo->pdev->dev, "running init script\n");
- glamo_run_script(glamo, glamo_init_script,
- ARRAY_SIZE(glamo_init_script), 1);
-
- dev_info(&glamo->pdev->dev, "Glamo core PLL1: %uHz, PLL2: %uHz\n",
- glamo_pll_rate(glamo, GLAMO_PLL1),
- glamo_pll_rate(glamo, GLAMO_PLL2));
-
- mfd_add_devices(&pdev->dev, pdev->id, glamo_cells,
- ARRAY_SIZE(glamo_cells),
- glamo->mem, 0);
-
- /* only request the generic, hostbus and memory controller MMIO */
- glamo->mem = request_mem_region(glamo->mem->start,
- GLAMO_REGOFS_VIDCAP, "glamo-core");
- if (!glamo->mem) {
- dev_err(&pdev->dev, "failed to request memory region\n");
- goto bail_irq;
- }
-
- return 0;
-
-bail_irq:
- disable_irq(glamo->irq);
- set_irq_chained_handler(glamo->irq, NULL);
- set_irq_chip_data(glamo->irq, NULL);
-
- for (irq = IRQ_GLAMO(0); irq <= IRQ_GLAMO(8); irq++) {
- set_irq_flags(irq, 0);
- set_irq_chip(irq, NULL);
- set_irq_chip_data(irq, NULL);
- }
-
- iounmap(glamo->base);
-bail_free:
- platform_set_drvdata(pdev, NULL);
- kfree(glamo);
-
- return rc;
-}
-
-static int glamo_remove(struct platform_device *pdev)
-{
- struct glamo_core *glamo = platform_get_drvdata(pdev);
- int irq;
-
- disable_irq(glamo->irq);
- set_irq_chained_handler(glamo->irq, NULL);
- set_irq_chip_data(glamo->irq, NULL);
-
- for (irq = IRQ_GLAMO(0); irq <= IRQ_GLAMO(8); irq++) {
- set_irq_flags(irq, 0);
- set_irq_chip(irq, NULL);
- set_irq_chip_data(irq, NULL);
- }
-
- platform_set_drvdata(pdev, NULL);
- mfd_remove_devices(&pdev->dev);
- iounmap(glamo->base);
- release_mem_region(glamo->mem->start, GLAMO_REGOFS_VIDCAP);
- kfree(glamo);
-
- return 0;
-}
-
-#ifdef CONFIG_PM
-
-static int glamo_suspend(struct device *dev)
-{
- struct glamo_core *glamo = dev_get_drvdata(dev);
- glamo->suspending = 1;
- glamo_power(glamo, GLAMO_POWER_SUSPEND);
-
- return 0;
-}
-
-static int glamo_resume(struct device *dev)
-{
- struct glamo_core *glamo = dev_get_drvdata(dev);
- glamo_power(glamo, GLAMO_POWER_ON);
- glamo->suspending = 0;
- return 0;
-}
-
-static struct dev_pm_ops glamo_pm_ops = {
- .suspend = glamo_suspend,
- .resume = glamo_resume,
-};
-
-#define GLAMO_PM_OPS (&glamo_pm_ops)
-
-#else
-#define GLAMO_PM_OPS NULL
-#endif
-
-static struct platform_driver glamo_driver = {
- .probe = glamo_probe,
- .remove = glamo_remove,
- .driver = {
- .name = "glamo3362",
- .owner = THIS_MODULE,
- .pm = GLAMO_PM_OPS,
- },
-};
-
-static int __devinit glamo_init(void)
-{
- return platform_driver_register(&glamo_driver);
-}
-
-static void __exit glamo_cleanup(void)
-{
- platform_driver_unregister(&glamo_driver);
-}
-
-module_init(glamo_init);
-module_exit(glamo_cleanup);
-
-MODULE_AUTHOR("Harald Welte <laforge@openmoko.org>");
-MODULE_DESCRIPTION("Smedia Glamo 336x/337x core/resource driver");
-MODULE_LICENSE("GPL");