Initial Contribution

msm-2.6.38: tag AU_LINUX_ANDROID_GINGERBREAD.02.03.04.00.142

Signed-off-by: Bryan Huntsman <bryanh@codeaurora.org>
diff --git a/arch/arm/mach-msm/sdio_smem.c b/arch/arm/mach-msm/sdio_smem.c
new file mode 100644
index 0000000..4da8199
--- /dev/null
+++ b/arch/arm/mach-msm/sdio_smem.c
@@ -0,0 +1,149 @@
+/* Copyright (c) 2010-2011, Code Aurora Forum. 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.
+ */
+
+#define pr_fmt(fmt) "%s: " fmt, __func__
+
+#include <linux/sched.h>
+#include <linux/wait.h>
+#include <linux/workqueue.h>
+#include <mach/sdio_al.h>
+#include <mach/sdio_smem.h>
+
+static void sdio_smem_read(struct work_struct *work);
+
+static struct sdio_channel *channel;
+static struct workqueue_struct *workq;
+static DECLARE_WORK(work_read, sdio_smem_read);
+static DECLARE_WAIT_QUEUE_HEAD(waitq);
+static int bytes_avail;
+
+static void sdio_smem_release(struct device *dev)
+{
+	pr_debug("sdio smem released\n");
+}
+
+static struct sdio_smem_client client;
+
+static void sdio_smem_read(struct work_struct *work)
+{
+	int err;
+	int read_avail;
+	char *data = client.buf;
+
+	read_avail = sdio_read_avail(channel);
+	if (read_avail > bytes_avail ||
+		read_avail < 0) {
+		pr_err("Error: read_avail=%d bytes_avail=%d\n",
+			read_avail, bytes_avail);
+		client.cb_func(SDIO_SMEM_EVENT_READ_ERR);
+		return;
+	}
+
+	err = sdio_read(channel,
+			&data[client.size - bytes_avail],
+			read_avail);
+	if (err < 0) {
+		pr_err("sdio_read error (%d)", err);
+		client.cb_func(SDIO_SMEM_EVENT_READ_ERR);
+		return;
+	}
+
+	bytes_avail -= read_avail;
+	pr_debug("read %d bytes (bytes_avail = %d)\n",
+			read_avail, bytes_avail);
+
+	if (!bytes_avail) {
+		bytes_avail = client.size;
+		err = client.cb_func(SDIO_SMEM_EVENT_READ_DONE);
+	}
+	if (err)
+		pr_err("error (%d) on callback\n", err);
+}
+
+static void sdio_smem_notify(void *priv, unsigned event)
+{
+	pr_debug("%d event received\n", event);
+
+	if (event == SDIO_EVENT_DATA_READ_AVAIL ||
+	    event == SDIO_EVENT_DATA_WRITE_AVAIL)
+		queue_work(workq, &work_read);
+}
+
+int sdio_smem_register_client(void)
+{
+	int err = 0;
+
+	if (!client.buf || !client.size || !client.cb_func)
+		return -EINVAL;
+
+	pr_debug("buf = %p\n", client.buf);
+	pr_debug("size = 0x%x\n", client.size);
+
+	bytes_avail = client.size;
+	workq = create_singlethread_workqueue("sdio_smem");
+	if (!workq)
+		return -ENOMEM;
+
+	err = sdio_open("SDIO_SMEM", &channel, NULL, sdio_smem_notify);
+	if (err < 0) {
+		pr_err("sdio_open error (%d)\n", err);
+		destroy_workqueue(workq);
+		return err;
+	}
+	pr_debug("SDIO SMEM channel opened\n");
+	return err;
+}
+
+int sdio_smem_unregister_client(void)
+{
+	destroy_workqueue(workq);
+	bytes_avail = 0;
+	client.buf = NULL;
+	client.cb_func = NULL;
+	client.size = 0;
+	pr_debug("SDIO SMEM channel closed\n");
+	return 0;
+}
+
+static int sdio_smem_probe(struct platform_device *pdev)
+{
+	client.plat_dev.name = "SDIO_SMEM_CLIENT";
+	client.plat_dev.id = -1;
+	client.plat_dev.dev.release = sdio_smem_release;
+
+	return platform_device_register(&client.plat_dev);
+}
+
+static int sdio_smem_remove(struct platform_device *pdev)
+{
+	platform_device_unregister(&client.plat_dev);
+	memset(&client, 0, sizeof(client));
+	return 0;
+}
+static struct platform_driver sdio_smem_drv = {
+	.probe		= sdio_smem_probe,
+	.remove		= sdio_smem_remove,
+	.driver		= {
+		.name	= "SDIO_SMEM",
+		.owner	= THIS_MODULE,
+	},
+};
+
+static int __init sdio_smem_init(void)
+{
+	return platform_driver_register(&sdio_smem_drv);
+};
+
+module_init(sdio_smem_init);
+
+MODULE_DESCRIPTION("SDIO SMEM");
+MODULE_LICENSE("GPL v2");