blob: 2324270e5c553262f36743d599149f50e5d3e721 [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 }
John Stultza4749bb2015-05-08 12:57:36 -070056 if (gb_audio_protocol_init()) {
57 pr_err("error initializing audio protocols\n");
58 goto error_audio;
59 }
60
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080061 return 0;
62
John Stultza4749bb2015-05-08 12:57:36 -070063error_audio:
64 gb_hid_protocol_exit();
Viresh Kumar96eab772015-03-16 16:49:37 +053065error_hid:
66 gb_spi_protocol_exit();
Viresh Kumar15d651b2015-01-23 13:07:45 +053067error_spi:
68 gb_i2c_protocol_exit();
Greg Kroah-Hartman2c078172014-12-24 13:01:44 -080069error_i2c:
70 gb_usb_protocol_exit();
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080071error_usb:
72 gb_sdio_protocol_exit();
73error_sdio:
74 gb_uart_protocol_exit();
75error_uart:
76 gb_pwm_protocol_exit();
77error_pwm:
78 gb_gpio_protocol_exit();
79error_gpio:
80 return -EPROTO;
81}
Viresh Kumar0d34be72015-03-24 20:14:28 +053082module_init(gpbridge_init);
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080083
84static void __exit gpbridge_exit(void)
85{
John Stultza4749bb2015-05-08 12:57:36 -070086 gb_audio_protocol_exit();
Viresh Kumar96eab772015-03-16 16:49:37 +053087 gb_hid_protocol_exit();
Viresh Kumar15d651b2015-01-23 13:07:45 +053088 gb_spi_protocol_exit();
Greg Kroah-Hartman2c078172014-12-24 13:01:44 -080089 gb_i2c_protocol_exit();
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080090 gb_usb_protocol_exit();
91 gb_sdio_protocol_exit();
92 gb_uart_protocol_exit();
93 gb_pwm_protocol_exit();
94 gb_gpio_protocol_exit();
95}
Greg Kroah-Hartmane1308c12014-12-24 13:01:43 -080096module_exit(gpbridge_exit);
97
Greg Kroah-Hartman6cf42a42015-04-13 19:51:33 +020098MODULE_LICENSE("GPL v2");