atmel-ssc.c 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Atmel SSC driver
 *
 * Copyright (C) 2007 Atmel Corporation
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/platform_device.h>
#include <linux/list.h>
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/spinlock.h>
#include <linux/atmel-ssc.h>
18
#include <linux/slab.h>
19
#include <linux/module.h>
20

21 22
#include <linux/of.h>

23 24 25 26 27 28 29 30 31 32 33
/* Serialize access to ssc_list and user count */
static DEFINE_SPINLOCK(user_lock);
static LIST_HEAD(ssc_list);

struct ssc_device *ssc_request(unsigned int ssc_num)
{
	int ssc_valid = 0;
	struct ssc_device *ssc;

	spin_lock(&user_lock);
	list_for_each_entry(ssc, &ssc_list, list) {
34 35 36 37 38 39 40
		if (ssc->pdev->dev.of_node) {
			if (of_alias_get_id(ssc->pdev->dev.of_node, "ssc")
				== ssc_num) {
				ssc_valid = 1;
				break;
			}
		} else if (ssc->pdev->id == ssc_num) {
41 42 43 44 45 46 47
			ssc_valid = 1;
			break;
		}
	}

	if (!ssc_valid) {
		spin_unlock(&user_lock);
48
		pr_err("ssc: ssc%d platform device is missing\n", ssc_num);
49 50 51 52 53 54 55 56 57 58 59
		return ERR_PTR(-ENODEV);
	}

	if (ssc->user) {
		spin_unlock(&user_lock);
		dev_dbg(&ssc->pdev->dev, "module busy\n");
		return ERR_PTR(-EBUSY);
	}
	ssc->user++;
	spin_unlock(&user_lock);

60
	clk_prepare_enable(ssc->clk);
61 62 63 64 65 66 67

	return ssc;
}
EXPORT_SYMBOL(ssc_request);

void ssc_free(struct ssc_device *ssc)
{
68 69
	bool disable_clk = true;

70
	spin_lock(&user_lock);
71
	if (ssc->user)
72
		ssc->user--;
73 74
	else {
		disable_clk = false;
75 76 77
		dev_dbg(&ssc->pdev->dev, "device already free\n");
	}
	spin_unlock(&user_lock);
78 79 80

	if (disable_clk)
		clk_disable_unprepare(ssc->clk);
81 82 83
}
EXPORT_SYMBOL(ssc_free);

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
static struct atmel_ssc_platform_data at91rm9200_config = {
	.use_dma = 0,
};

static struct atmel_ssc_platform_data at91sam9g45_config = {
	.use_dma = 1,
};

static const struct platform_device_id atmel_ssc_devtypes[] = {
	{
		.name = "at91rm9200_ssc",
		.driver_data = (unsigned long) &at91rm9200_config,
	}, {
		.name = "at91sam9g45_ssc",
		.driver_data = (unsigned long) &at91sam9g45_config,
	}, {
		/* sentinel */
	}
};

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
#ifdef CONFIG_OF
static const struct of_device_id atmel_ssc_dt_ids[] = {
	{
		.compatible = "atmel,at91rm9200-ssc",
		.data = &at91rm9200_config,
	}, {
		.compatible = "atmel,at91sam9g45-ssc",
		.data = &at91sam9g45_config,
	}, {
		/* sentinel */
	}
};
MODULE_DEVICE_TABLE(of, atmel_ssc_dt_ids);
#endif

static inline const struct atmel_ssc_platform_data * __init
	atmel_ssc_get_driver_data(struct platform_device *pdev)
{
	if (pdev->dev.of_node) {
		const struct of_device_id *match;
		match = of_match_node(atmel_ssc_dt_ids, pdev->dev.of_node);
		if (match == NULL)
			return NULL;
		return match->data;
	}

	return (struct atmel_ssc_platform_data *)
		platform_get_device_id(pdev)->driver_data;
}

134
static int ssc_probe(struct platform_device *pdev)
135 136 137
{
	struct resource *regs;
	struct ssc_device *ssc;
138
	const struct atmel_ssc_platform_data *plat_dat;
139

140
	ssc = devm_kzalloc(&pdev->dev, sizeof(struct ssc_device), GFP_KERNEL);
141 142
	if (!ssc) {
		dev_dbg(&pdev->dev, "out of memory\n");
143
		return -ENOMEM;
144 145
	}

146
	ssc->pdev = pdev;
147 148 149 150 151

	plat_dat = atmel_ssc_get_driver_data(pdev);
	if (!plat_dat)
		return -ENODEV;
	ssc->pdata = (struct atmel_ssc_platform_data *)plat_dat;
152

153 154 155 156 157 158
	if (pdev->dev.of_node) {
		struct device_node *np = pdev->dev.of_node;
		ssc->clk_from_rk_pin =
			of_property_read_bool(np, "atmel,clk-from-rk-pin");
	}

159
	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
160 161 162
	ssc->regs = devm_ioremap_resource(&pdev->dev, regs);
	if (IS_ERR(ssc->regs))
		return PTR_ERR(ssc->regs);
163

164 165
	ssc->phybase = regs->start;

166 167 168 169
	ssc->clk = devm_clk_get(&pdev->dev, "pclk");
	if (IS_ERR(ssc->clk)) {
		dev_dbg(&pdev->dev, "no pclk clock defined\n");
		return -ENXIO;
170 171 172
	}

	/* disable all interrupts */
173
	clk_prepare_enable(ssc->clk);
174
	ssc_writel(ssc->regs, IDR, -1);
175
	ssc_readl(ssc->regs, SR);
176
	clk_disable_unprepare(ssc->clk);
177 178 179 180

	ssc->irq = platform_get_irq(pdev, 0);
	if (!ssc->irq) {
		dev_dbg(&pdev->dev, "could not get irq\n");
181
		return -ENXIO;
182 183 184 185 186 187 188 189 190 191 192
	}

	spin_lock(&user_lock);
	list_add_tail(&ssc->list, &ssc_list);
	spin_unlock(&user_lock);

	platform_set_drvdata(pdev, ssc);

	dev_info(&pdev->dev, "Atmel SSC device at 0x%p (irq %d)\n",
			ssc->regs, ssc->irq);

193
	return 0;
194 195
}

B
Bill Pemberton 已提交
196
static int ssc_remove(struct platform_device *pdev)
197 198 199 200 201 202 203 204 205 206 207 208 209
{
	struct ssc_device *ssc = platform_get_drvdata(pdev);

	spin_lock(&user_lock);
	list_del(&ssc->list);
	spin_unlock(&user_lock);

	return 0;
}

static struct platform_driver ssc_driver = {
	.driver		= {
		.name		= "ssc",
210
		.owner		= THIS_MODULE,
211
		.of_match_table	= of_match_ptr(atmel_ssc_dt_ids),
212
	},
213
	.id_table	= atmel_ssc_devtypes,
214
	.probe		= ssc_probe,
215
	.remove		= ssc_remove,
216
};
217
module_platform_driver(ssc_driver);
218 219 220 221

MODULE_AUTHOR("Hans-Christian Egtvedt <hcegtvedt@atmel.com>");
MODULE_DESCRIPTION("SSC driver for Atmel AVR32 and AT91");
MODULE_LICENSE("GPL");
222
MODULE_ALIAS("platform:ssc");