diff options
author | VahidGharaee <vgharaee@gmail.com> | 2019-11-25 08:23:15 +0330 |
---|---|---|
committer | VahidGharaee <vgharaee@gmail.com> | 2019-12-31 08:33:26 +0330 |
commit | e2cbc7a72414ce3d385760965351607b71acc214 (patch) | |
tree | 56bd8d5213560c2068b18220b518b7d3317a58b5 /binding/radio_impl_tef665x.h | |
parent | 885c33492537df6e90a8de7cbe38e769059b9782 (diff) |
Add support for TEF665x in agl-service-radioicefish_8.99.5icefish/8.99.58.99.5
This is a NXP tuner AM/FM/RDS. The chip has analogue and digital sound
output and input. Chip is controlled through i2c.
I had to add a sound cart to the kernel to be able to capture the i2s
data from the chip.
Some of the verbs still to be implemented. I test it on a costum board
with imx6solo.
Bug-AGL SPEC-3071
Signed-off-by: VahidGharaee <vgharaee@gmail.com>
Change-Id: I868706e6d275aef77f77138f815b1b53d64780be
Diffstat (limited to 'binding/radio_impl_tef665x.h')
-rw-r--r-- | binding/radio_impl_tef665x.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/binding/radio_impl_tef665x.h b/binding/radio_impl_tef665x.h new file mode 100644 index 0000000..a95fd99 --- /dev/null +++ b/binding/radio_impl_tef665x.h @@ -0,0 +1,23 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#ifndef _RADIO_IMPL_TEF665X_H +#define _RADIO_IMPL_TEF665X_H + +#include "radio_impl.h" + +extern radio_impl_ops_t tef665x_impl_ops; + + +#endif /* _RADIO_IMPL_TEF665X_H */ + |