Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / bpf / test_lirc_mode2_kern.c
blobba26855563a5f848a7788b2ee1c6df649933338c
1 // SPDX-License-Identifier: GPL-2.0
2 // test ir decoder
3 //
4 // Copyright (C) 2018 Sean Young <sean@mess.org>
6 #include <linux/bpf.h>
7 #include <linux/lirc.h>
8 #include "bpf_helpers.h"
10 SEC("lirc_mode2")
11 int bpf_decoder(unsigned int *sample)
13 if (LIRC_IS_PULSE(*sample)) {
14 unsigned int duration = LIRC_VALUE(*sample);
16 if (duration & 0x10000)
17 bpf_rc_keydown(sample, 0x40, duration & 0xffff, 0);
20 return 0;
23 char _license[] SEC("license") = "GPL";