aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-mxc/serialxc.c
blob: a3eeef962d5174a9c3cecd6304d62183e99d9f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (C) 2005-2011 Freescale Semiconductor, Inc. All Rights Reserved.
 */

/*
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <linux/usb/fsl_xcvr.h>

#include <mach/hardware.h>
#include <mach/arc_otg.h>

static void usb_serial_init(struct fsl_xcvr_ops *this)
{
}

static void usb_serial_uninit(struct fsl_xcvr_ops *this)
{
}

static struct fsl_xcvr_ops serial_ops = {
	.name = "serial",
	.xcvr_type = PORTSC_PTS_SERIAL,
	.init = usb_serial_init,
	.uninit = usb_serial_uninit,
};

extern void fsl_usb_xcvr_register(struct fsl_xcvr_ops *xcvr_ops);

static int __init serialxc_init(void)
{
	pr_debug("%s\n", __FUNCTION__);

	fsl_usb_xcvr_register(&serial_ops);

	return 0;
}

extern void fsl_usb_xcvr_unregister(struct fsl_xcvr_ops *xcvr_ops);

static void __exit serialxc_exit(void)
{
	fsl_usb_xcvr_unregister(&serial_ops);
}

subsys_initcall(serialxc_init);
module_exit(serialxc_exit);

MODULE_AUTHOR("Freescale Semiconductor, Inc.");
MODULE_DESCRIPTION("serial xcvr driver");
MODULE_LICENSE("GPL");