1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * vivid-rds-gen.h - rds (radio data system) generator support functions.
5 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
8 #ifndef _VIVID_RDS_GEN_H_
9 #define _VIVID_RDS_GEN_H_
12 * It takes almost exactly 5 seconds to transmit 57 RDS groups.
13 * Each group has 4 blocks and each block has a payload of 16 bits + a
14 * block identification. The driver will generate the contents of these
15 * 57 groups only when necessary and it will just be played continuously.
17 #define VIVID_RDS_GEN_GROUPS 57
18 #define VIVID_RDS_GEN_BLKS_PER_GRP 4
19 #define VIVID_RDS_GEN_BLOCKS (VIVID_RDS_GEN_BLKS_PER_GRP * VIVID_RDS_GEN_GROUPS)
20 #define VIVID_RDS_NSEC_PER_BLK (u32)(5ull * NSEC_PER_SEC / VIVID_RDS_GEN_BLOCKS)
22 struct vivid_rds_gen {
23 struct v4l2_rds_data data[VIVID_RDS_GEN_BLOCKS];
35 char radiotext[64 + 1];
38 void vivid_rds_gen_fill(struct vivid_rds_gen *rds, unsigned freq,
40 void vivid_rds_generate(struct vivid_rds_gen *rds);