summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/control.c
blob: a69a703a18485f1db90a93610006fb893f0002b2 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
134
135
136
137
138
139
140
141
142
/*
 * Greybus CPort control protocol.
 *
 * Copyright 2015 Google Inc.
 * Copyright 2015 Linaro Ltd.
 *
 * Released under the GPLv2 only.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include "greybus.h"

/* Define get_version() routine */
define_get_version(gb_control, CONTROL);

/* Get Manifest's size from the interface */
int gb_control_get_manifest_size_operation(struct gb_interface *intf)
{
	struct gb_control_get_manifest_size_response response;
	struct gb_connection *connection = intf->control->connection;
	int ret;

	ret = gb_operation_sync(connection, GB_CONTROL_TYPE_GET_MANIFEST_SIZE,
				NULL, 0, &response, sizeof(response));
	if (ret) {
		dev_err(&connection->dev,
			"%s: Manifest size get operation failed (%d)\n",
			__func__, ret);
		return ret;
	}

	return le16_to_cpu(response.size);
}

/* Reads Manifest from the interface */
int gb_control_get_manifest_operation(struct gb_interface *intf, void *manifest,
				      size_t size)
{
	struct gb_connection *connection = intf->control->connection;

	return gb_operation_sync(connection, GB_CONTROL_TYPE_GET_MANIFEST,
				NULL, 0, manifest, size);
}

int gb_control_connected_operation(struct gb_control *control, u16 cport_id)
{
	struct gb_control_connected_request request;

	request.cport_id = cpu_to_le16(cport_id);
	return gb_operation_sync(control->connection, GB_CONTROL_TYPE_CONNECTED,
				 &request, sizeof(request), NULL, 0);
}

int gb_control_disconnected_operation(struct gb_control *control, u16 cport_id)
{
	struct gb_control_disconnected_request request;

	request.cport_id = cpu_to_le16(cport_id);
	return gb_operation_sync(control->connection,
				 GB_CONTROL_TYPE_DISCONNECTED, &request,
				 sizeof(request), NULL, 0);
}

static int gb_control_request_recv(u8 type, struct gb_operation *op)
{
	struct gb_connection *connection = op->connection;
	struct gb_protocol_version_response *version;

	switch (type) {
	case GB_CONTROL_TYPE_PROBE_AP:
		// TODO
		// Send authenticated block of data, confirming this module is
		// an AP.
		break;
	case GB_CONTROL_TYPE_PROTOCOL_VERSION:
		if (!gb_operation_response_alloc(op, sizeof(*version),
						 GFP_KERNEL)) {
			dev_err(&connection->dev,
				"%s: error allocating response\n", __func__);
			return -ENOMEM;
		}

		version = op->response->payload;
		version->major = GB_CONTROL_VERSION_MAJOR;
		version->minor = GB_CONTROL_VERSION_MINOR;
		break;
	case GB_CONTROL_TYPE_CONNECTED:
	case GB_CONTROL_TYPE_DISCONNECTED:
		break;
	default:
		WARN_ON(1);
		break;
	}

	return 0;
}

static int gb_control_connection_init(struct gb_connection *connection)
{
	struct gb_control *control;
	int ret;

	control = kzalloc(sizeof(*control), GFP_KERNEL);
	if (!control)
		return -ENOMEM;

	control->connection = connection;
	connection->private = control;

	ret = get_version(control);
	if (ret)
		kfree(control);

	/* Set interface's control connection */
	connection->bundle->intf->control = control;

	return ret;
}

static void gb_control_connection_exit(struct gb_connection *connection)
{
	struct gb_control *control = connection->private;

	if (WARN_ON(connection->bundle->intf->control != control))
		return;

	connection->bundle->intf->control = NULL;
	kfree(control);
}

static struct gb_protocol control_protocol = {
	.name			= "control",
	.id			= GREYBUS_PROTOCOL_CONTROL,
	.major			= 0,
	.minor			= 1,
	.connection_init	= gb_control_connection_init,
	.connection_exit	= gb_control_connection_exit,
	.request_recv		= gb_control_request_recv,
};
gb_builtin_protocol_driver(control_protocol);
OpenPOWER on IntegriCloud