blob: 07406140d2770e6e607430abb8a4c6e415ad74d7 [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Pavan Savoy1d065ab2010-04-08 13:16:55 -05002/*
3 * Shared Transport driver
4 * HCI-LL module responsible for TI proprietary HCI_LL protocol
Pavan Savoya0cc2f3b2010-10-06 12:18:14 -04005 * Copyright (C) 2009-2010 Texas Instruments
6 * Author: Pavan Savoy <pavan_savoy@ti.com>
Pavan Savoy1d065ab2010-04-08 13:16:55 -05007 */
8
9#define pr_fmt(fmt) "(stll) :" fmt
Pavan Savoy83ef41f2010-09-17 12:06:11 -040010#include <linux/skbuff.h>
11#include <linux/module.h>
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050012#include <linux/platform_device.h>
Pavan Savoye5558672010-09-30 16:13:30 -040013#include <linux/ti_wilink_st.h>
Pavan Savoy1d065ab2010-04-08 13:16:55 -050014
15/**********************************************************************/
16/* internal functions */
17static void send_ll_cmd(struct st_data_s *st_data,
18 unsigned char cmd)
19{
20
Pavan Savoy6710fcff2011-02-04 02:23:12 -060021 pr_debug("%s: writing %x", __func__, cmd);
Pavan Savoy1d065ab2010-04-08 13:16:55 -050022 st_int_write(st_data, &cmd, 1);
23 return;
24}
25
26static void ll_device_want_to_sleep(struct st_data_s *st_data)
27{
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050028 struct kim_data_s *kim_data;
29 struct ti_st_plat_data *pdata;
30
Pavan Savoye6d9e642010-07-22 05:32:05 -050031 pr_debug("%s", __func__);
Pavan Savoy1d065ab2010-04-08 13:16:55 -050032 /* sanity check */
33 if (st_data->ll_state != ST_LL_AWAKE)
34 pr_err("ERR hcill: ST_LL_GO_TO_SLEEP_IND"
35 "in state %ld", st_data->ll_state);
36
37 send_ll_cmd(st_data, LL_SLEEP_ACK);
38 /* update state */
39 st_data->ll_state = ST_LL_ASLEEP;
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050040
41 /* communicate to platform about chip asleep */
42 kim_data = st_data->kim_data;
Rob Herringc0bd1b92015-07-22 13:17:15 -050043 pdata = kim_data->kim_pdev->dev.platform_data;
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050044 if (pdata->chip_asleep)
45 pdata->chip_asleep(NULL);
Pavan Savoy1d065ab2010-04-08 13:16:55 -050046}
47
48static void ll_device_want_to_wakeup(struct st_data_s *st_data)
49{
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050050 struct kim_data_s *kim_data;
51 struct ti_st_plat_data *pdata;
52
Pavan Savoy1d065ab2010-04-08 13:16:55 -050053 /* diff actions in diff states */
54 switch (st_data->ll_state) {
55 case ST_LL_ASLEEP:
56 send_ll_cmd(st_data, LL_WAKE_UP_ACK); /* send wake_ack */
57 break;
58 case ST_LL_ASLEEP_TO_AWAKE:
59 /* duplicate wake_ind */
60 pr_err("duplicate wake_ind while waiting for Wake ack");
61 break;
62 case ST_LL_AWAKE:
63 /* duplicate wake_ind */
64 pr_err("duplicate wake_ind already AWAKE");
65 break;
66 case ST_LL_AWAKE_TO_ASLEEP:
67 /* duplicate wake_ind */
68 pr_err("duplicate wake_ind");
69 break;
70 }
71 /* update state */
72 st_data->ll_state = ST_LL_AWAKE;
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050073
74 /* communicate to platform about chip wakeup */
75 kim_data = st_data->kim_data;
Rob Herringc0bd1b92015-07-22 13:17:15 -050076 pdata = kim_data->kim_pdev->dev.platform_data;
Matthias Kaehlckef3d9d362012-08-02 22:17:48 +020077 if (pdata->chip_awake)
Pavan Savoy0d7c5f22011-08-10 10:18:31 -050078 pdata->chip_awake(NULL);
Pavan Savoy1d065ab2010-04-08 13:16:55 -050079}
80
81/**********************************************************************/
82/* functions invoked by ST Core */
83
84/* called when ST Core wants to
85 * enable ST LL */
86void st_ll_enable(struct st_data_s *ll)
87{
88 ll->ll_state = ST_LL_AWAKE;
89}
90
91/* called when ST Core /local module wants to
92 * disable ST LL */
93void st_ll_disable(struct st_data_s *ll)
94{
95 ll->ll_state = ST_LL_INVALID;
96}
97
98/* called when ST Core wants to update the state */
99void st_ll_wakeup(struct st_data_s *ll)
100{
101 if (likely(ll->ll_state != ST_LL_AWAKE)) {
102 send_ll_cmd(ll, LL_WAKE_UP_IND); /* WAKE_IND */
103 ll->ll_state = ST_LL_ASLEEP_TO_AWAKE;
104 } else {
105 /* don't send the duplicate wake_indication */
106 pr_err(" Chip already AWAKE ");
107 }
108}
109
110/* called when ST Core wants the state */
111unsigned long st_ll_getstate(struct st_data_s *ll)
112{
Pavan Savoye6d9e642010-07-22 05:32:05 -0500113 pr_debug(" returning state %ld", ll->ll_state);
Pavan Savoy1d065ab2010-04-08 13:16:55 -0500114 return ll->ll_state;
115}
116
117/* called from ST Core, when a PM related packet arrives */
118unsigned long st_ll_sleep_state(struct st_data_s *st_data,
119 unsigned char cmd)
120{
121 switch (cmd) {
122 case LL_SLEEP_IND: /* sleep ind */
Pavan Savoy6710fcff2011-02-04 02:23:12 -0600123 pr_debug("sleep indication recvd");
Pavan Savoy1d065ab2010-04-08 13:16:55 -0500124 ll_device_want_to_sleep(st_data);
125 break;
126 case LL_SLEEP_ACK: /* sleep ack */
127 pr_err("sleep ack rcvd: host shouldn't");
128 break;
129 case LL_WAKE_UP_IND: /* wake ind */
Pavan Savoy6710fcff2011-02-04 02:23:12 -0600130 pr_debug("wake indication recvd");
Pavan Savoy1d065ab2010-04-08 13:16:55 -0500131 ll_device_want_to_wakeup(st_data);
132 break;
133 case LL_WAKE_UP_ACK: /* wake ack */
Pavan Savoy6710fcff2011-02-04 02:23:12 -0600134 pr_debug("wake ack rcvd");
Pavan Savoy1d065ab2010-04-08 13:16:55 -0500135 st_data->ll_state = ST_LL_AWAKE;
136 break;
137 default:
138 pr_err(" unknown input/state ");
Pavan Savoy70442662011-02-04 02:23:11 -0600139 return -EINVAL;
Pavan Savoy1d065ab2010-04-08 13:16:55 -0500140 }
Pavan Savoy320920c2010-07-14 08:21:12 -0500141 return 0;
Pavan Savoy1d065ab2010-04-08 13:16:55 -0500142}
143
144/* Called from ST CORE to initialize ST LL */
145long st_ll_init(struct st_data_s *ll)
146{
147 /* set state to invalid */
148 ll->ll_state = ST_LL_INVALID;
149 return 0;
150}
151
152/* Called from ST CORE to de-initialize ST LL */
153long st_ll_deinit(struct st_data_s *ll)
154{
155 return 0;
156}