hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2020 BayLibre SAS. All rights reserved.
 */
 
/dts-v1/;
/plugin/;
 
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/gpio/meson-g12a-gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
 
/ {
  compatible = "seirobotics,sei510", "amlogic,g12a";
  model = "SEI Robotics SEI510";
  fragment@101 {
        target-path = "/";
 
        __overlay__ {
                reserved-memory {
                        #address-cells = <2>;
                        #size-cells = <2>;
                        ramoops@d000000 {
                                compatible = "ramoops";
                                reg = <0x0 0x0d000000 0x0 0x00100000>;
                                record-size = <0x8000>;
                                console-size = <0x8000>;
                                ftrace-size = <0x0>;
                                pmsg-size = <0x8000>;
                        };
                };
 
                adc_keys {
                        button-onoff {
                                linux,code = <BTN_0>;
                        };
                };
 
                cvbs-connector {
                        status = "disabled";
                };
        };
  };
};
 
&vddao_3v3_t {
   gpio-open-drain;
};
 
&uart_A {
   bluetooth {
        interrupt-parent = <&gpio_intc>;
        interrupts = <95 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "host-wakeup";
    };
};