blob: d5747b291171c74375f0ee76d3be2c6c8168ef86 [file] [log] [blame]
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -08001/*
2 * Greybus GP Bridge driver
3 *
4 * Copyright 2014 Google Inc.
5 * Copyright 2014 Linaro Ltd.
6 *
7 * Released under the GPLv2 only.
8 */
9
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
12#include <linux/types.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/kernel.h>
16#include <linux/slab.h>
17#include <linux/device.h>
18
19#include "greybus.h"
20
21
22static int __init gpbridge_init(void)
23{
24 if (gb_gpio_protocol_init()) {
25 pr_err("error initializing gpio protocol\n");
26 goto error_gpio;
27 }
28 if (gb_pwm_protocol_init()) {
29 pr_err("error initializing pwm protocol\n");
30 goto error_pwm;
31 }
32 if (gb_uart_protocol_init()) {
33 pr_err("error initializing uart protocol\n");
34 goto error_uart;
35 }
36 if (gb_sdio_protocol_init()) {
37 pr_err("error initializing sdio protocol\n");
38 goto error_sdio;
39 }
40 if (gb_usb_protocol_init()) {
41 pr_err("error initializing usb protocol\n");
42 goto error_usb;
43 }
Greg Kroah-Hartman2c078172014-12-24 13:01:44 -080044 if (gb_i2c_protocol_init()) {
Viresh Kumarb908dec42015-03-10 14:41:12 +053045 pr_err("error initializing i2c protocol\n");
Greg Kroah-Hartman2c078172014-12-24 13:01:44 -080046 goto error_i2c;
47 }
Viresh Kumar15d651b2015-01-23 13:07:45 +053048 if (gb_spi_protocol_init()) {
Viresh Kumarb908dec42015-03-10 14:41:12 +053049 pr_err("error initializing spi protocol\n");
Viresh Kumar15d651b2015-01-23 13:07:45 +053050 goto error_spi;
51 }
Viresh Kumar96eab772015-03-16 16:49:37 +053052 if (gb_hid_protocol_init()) {
53 pr_err("error initializing hid protocol\n");
54 goto error_hid;
55 }
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080056 return 0;
57
Viresh Kumar96eab772015-03-16 16:49:37 +053058error_hid:
59 gb_spi_protocol_exit();
Viresh Kumar15d651b2015-01-23 13:07:45 +053060error_spi:
61 gb_i2c_protocol_exit();
Greg Kroah-Hartman2c078172014-12-24 13:01:44 -080062error_i2c:
63 gb_usb_protocol_exit();
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080064error_usb:
65 gb_sdio_protocol_exit();
66error_sdio:
67 gb_uart_protocol_exit();
68error_uart:
69 gb_pwm_protocol_exit();
70error_pwm:
71 gb_gpio_protocol_exit();
72error_gpio:
73 return -EPROTO;
74}
Viresh Kumar0d34be72015-03-24 20:14:28 +053075module_init(gpbridge_init);
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080076
77static void __exit gpbridge_exit(void)
78{
Viresh Kumar96eab772015-03-16 16:49:37 +053079 gb_hid_protocol_exit();
Viresh Kumar15d651b2015-01-23 13:07:45 +053080 gb_spi_protocol_exit();
Greg Kroah-Hartman2c078172014-12-24 13:01:44 -080081 gb_i2c_protocol_exit();
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080082 gb_usb_protocol_exit();
83 gb_sdio_protocol_exit();
84 gb_uart_protocol_exit();
85 gb_pwm_protocol_exit();
86 gb_gpio_protocol_exit();
87}
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080088module_exit(gpbridge_exit);
89
Greg Kroah-Hartman6cf42a42015-04-13 19:51:33 +020090MODULE_LICENSE("GPL v2");