summaryrefslogtreecommitdiff
path: root/zephyr/program
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/program')
-rw-r--r--zephyr/program/corsola/interrupts_magikarp.dtsi115
-rw-r--r--zephyr/program/corsola/interrupts_tentacruel.dtsi115
-rw-r--r--zephyr/program/corsola/ite_interrupts.dtsi2
-rw-r--r--zephyr/program/corsola/magikarp/project.overlay24
-rw-r--r--zephyr/program/corsola/tentacruel/project.overlay24
-rw-r--r--zephyr/program/corsola/voltorb/project.overlay9
-rw-r--r--zephyr/program/nissa/xivu/overlay.dtsi26
7 files changed, 80 insertions, 235 deletions
diff --git a/zephyr/program/corsola/interrupts_magikarp.dtsi b/zephyr/program/corsola/interrupts_magikarp.dtsi
deleted file mode 100644
index 4f4e0ba100..0000000000
--- a/zephyr/program/corsola/interrupts_magikarp.dtsi
+++ /dev/null
@@ -1,115 +0,0 @@
-/* Copyright 2022 The ChromiumOS Authors
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/ {
- aliases {
- int-wp = &int_wp;
- };
-
- gpio-interrupts {
- compatible = "cros-ec,gpio-interrupts";
-
- int_power_button: power_button {
- irq-pin = <&power_button_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "power_button_interrupt";
- };
- int_volume_up: volume_up {
- irq-pin = <&volume_up_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "button_interrupt";
- };
- int_volume_down: volume_down {
- irq-pin = <&volume_down_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "button_interrupt";
- };
- int_lid_open: lid_open {
- irq-pin = <&lid_open>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "lid_interrupt";
- };
- int_warm_rst: warm_rst {
- irq-pin = <&ap_ec_warm_rst_req>;
- flags = <GPIO_INT_EDGE_RISING>;
- handler = "chipset_reset_request_interrupt";
- };
- int_ap_in_sleep: ap_in_sleep {
- irq-pin = <&ap_in_sleep_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "power_signal_interrupt";
- };
- int_ap_in_rst: ap_in_rst {
- irq-pin = <&ap_sysrst_odl_r>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "power_signal_interrupt";
- };
- int_ap_wdtrst: ap_wdtrst {
- irq-pin = <&ap_ec_wdtrst_l>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "chipset_watchdog_interrupt";
- };
- int_tablet_mode: tablet_mode {
- irq-pin = <&tablet_mode_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "gmr_tablet_switch_isr";
- };
- int_base_imu: base_imu {
- irq-pin = <&base_imu_int_l>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "motion_interrupt";
- };
- int_lid_imu: lid_imu {
- irq-pin = <&lid_accel_int_l>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "lis2dw12_interrupt";
- };
- int_ac_present: ac_present {
- irq-pin = <&ac_present>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "extpower_interrupt";
- };
- int_usba: usba {
- irq-pin = <&gpio_ap_xhci_init_done>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "usb_a0_interrupt";
- };
- int_wp: wp {
- irq-pin = <&ec_flash_wp_odl>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "switch_interrupt";
- };
- int_spi0_cs: spi0_cs {
- irq-pin = <&spi0_cs>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "spi_event";
- };
- int_x_ec_gpio2: x_ec_gpio2 {
- irq-pin = <&gpio_x_ec_gpio2>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "x_ec_interrupt";
- };
- int_usb_c0_bc12: usb_c0_bc12 {
- irq-pin = <&usb_c0_bc12_int_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "bc12_interrupt";
- };
- int_usb_c0_ppc: usb_c0_ppc {
- irq-pin = <&usb_c0_ppc_int_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "ppc_interrupt";
- };
- int_usb_c1_bc12_charger: usb_c1_bc12_charger {
- irq-pin = <&usb_c1_bc12_charger_int_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "rt9490_bc12_dt_interrupt";
- };
- int_ccd_mode_odl: ccd-mode-odl {
- irq-pin = <&gpio_ccd_mode_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "ccd_interrupt";
- };
- };
-};
diff --git a/zephyr/program/corsola/interrupts_tentacruel.dtsi b/zephyr/program/corsola/interrupts_tentacruel.dtsi
deleted file mode 100644
index 11229daf36..0000000000
--- a/zephyr/program/corsola/interrupts_tentacruel.dtsi
+++ /dev/null
@@ -1,115 +0,0 @@
-/* Copyright 2022 The ChromiumOS Authors
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/ {
- aliases {
- int-wp = &int_wp;
- };
-
- gpio-interrupts {
- compatible = "cros-ec,gpio-interrupts";
-
- int_power_button: power_button {
- irq-pin = <&power_button_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "power_button_interrupt";
- };
- int_volume_up: volume_up {
- irq-pin = <&volume_up_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "button_interrupt";
- };
- int_volume_down: volume_down {
- irq-pin = <&volume_down_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "button_interrupt";
- };
- int_lid_open: lid_open {
- irq-pin = <&lid_open>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "lid_interrupt";
- };
- int_warm_rst: warm_rst {
- irq-pin = <&ap_ec_warm_rst_req>;
- flags = <GPIO_INT_EDGE_RISING>;
- handler = "chipset_reset_request_interrupt";
- };
- int_ap_in_sleep: ap_in_sleep {
- irq-pin = <&ap_in_sleep_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "power_signal_interrupt";
- };
- int_ap_in_rst: ap_in_rst {
- irq-pin = <&ap_sysrst_odl_r>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "power_signal_interrupt";
- };
- int_ap_wdtrst: ap_wdtrst {
- irq-pin = <&ap_ec_wdtrst_l>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "chipset_watchdog_interrupt";
- };
- int_tablet_mode: tablet_mode {
- irq-pin = <&tablet_mode_l>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "gmr_tablet_switch_isr";
- };
- int_base_imu: base_imu {
- irq-pin = <&base_imu_int_l>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "motion_interrupt";
- };
- int_lid_imu: lid_imu {
- irq-pin = <&lid_accel_int_l>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "lis2dw12_interrupt";
- };
- int_ac_present: ac_present {
- irq-pin = <&ac_present>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "extpower_interrupt";
- };
- int_usba: usba {
- irq-pin = <&gpio_ap_xhci_init_done>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "usb_a0_interrupt";
- };
- int_wp: wp {
- irq-pin = <&ec_flash_wp_odl>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "switch_interrupt";
- };
- int_spi0_cs: spi0_cs {
- irq-pin = <&spi0_cs>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "spi_event";
- };
- int_x_ec_gpio2: x_ec_gpio2 {
- irq-pin = <&gpio_x_ec_gpio2>;
- flags = <GPIO_INT_EDGE_BOTH>;
- handler = "x_ec_interrupt";
- };
- int_usb_c0_ppc: usb_c0_ppc {
- irq-pin = <&usb_c0_ppc_int_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "ppc_interrupt";
- };
- int_usb_c0_bc12: usb_c0_bc12 {
- irq-pin = <&usb_c0_bc12_int_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "bc12_interrupt";
- };
- int_usb_c1_bc12_charger: usb_c1_bc12_charger {
- irq-pin = <&usb_c1_bc12_charger_int_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "rt9490_bc12_dt_interrupt";
- };
- int_ccd_mode_odl: ccd-mode-odl {
- irq-pin = <&gpio_ccd_mode_odl>;
- flags = <GPIO_INT_EDGE_FALLING>;
- handler = "ccd_interrupt";
- };
- };
-};
diff --git a/zephyr/program/corsola/ite_interrupts.dtsi b/zephyr/program/corsola/ite_interrupts.dtsi
index 3caf4660ae..b99effb9eb 100644
--- a/zephyr/program/corsola/ite_interrupts.dtsi
+++ b/zephyr/program/corsola/ite_interrupts.dtsi
@@ -83,7 +83,7 @@
};
int_spi0_cs: spi0_cs {
irq-pin = <&spi0_cs>;
- flags = <GPIO_INT_EDGE_BOTH>;
+ flags = <GPIO_INT_EDGE_FALLING>;
handler = "spi_event";
};
int_x_ec_gpio2: x_ec_gpio2 {
diff --git a/zephyr/program/corsola/magikarp/project.overlay b/zephyr/program/corsola/magikarp/project.overlay
index f4ca85e375..6f69253c6d 100644
--- a/zephyr/program/corsola/magikarp/project.overlay
+++ b/zephyr/program/corsola/magikarp/project.overlay
@@ -14,7 +14,29 @@
#include "../gpio_magikarp.dtsi"
#include "../ite_keyboard.dtsi"
#include "../i2c_magikarp.dtsi"
-#include "../interrupts_magikarp.dtsi"
+#include "../ite_interrupts.dtsi"
#include "../led_magikarp.dtsi"
#include "../motionsense_magikarp.dtsi"
#include "../usbc_magikarp.dtsi"
+
+/ {
+ gpio-interrupts {
+ int_base_imu: base_imu {
+ handler = "motion_interrupt";
+ };
+
+ /delete-node/ usb_c0_ppc_bc12;
+
+ int_usb_c0_ppc: usb_c0_ppc {
+ irq-pin = <&usb_c0_ppc_int_odl>;
+ flags = <GPIO_INT_EDGE_FALLING>;
+ handler = "ppc_interrupt";
+ };
+
+ int_usb_c0_bc12: usb_c0_bc12 {
+ irq-pin = <&usb_c0_bc12_int_odl>;
+ flags = <GPIO_INT_EDGE_FALLING>;
+ handler = "bc12_interrupt";
+ };
+ };
+};
diff --git a/zephyr/program/corsola/tentacruel/project.overlay b/zephyr/program/corsola/tentacruel/project.overlay
index 79bf2baa3d..411f401a0e 100644
--- a/zephyr/program/corsola/tentacruel/project.overlay
+++ b/zephyr/program/corsola/tentacruel/project.overlay
@@ -14,8 +14,30 @@
#include "../gpio_tentacruel.dtsi"
#include "../ite_keyboard.dtsi"
#include "../i2c_tentacruel.dtsi"
-#include "../interrupts_tentacruel.dtsi"
+#include "../ite_interrupts.dtsi"
#include "../led_tentacruel.dtsi"
#include "../motionsense_tentacruel.dtsi"
#include "../usbc_tentacruel.dtsi"
#include "../thermistor_tentacruel.dtsi"
+
+/ {
+ gpio-interrupts {
+ int_base_imu: base_imu {
+ handler = "motion_interrupt";
+ };
+
+ /delete-node/ usb_c0_ppc_bc12;
+
+ int_usb_c0_ppc: usb_c0_ppc {
+ irq-pin = <&usb_c0_ppc_int_odl>;
+ flags = <GPIO_INT_EDGE_FALLING>;
+ handler = "ppc_interrupt";
+ };
+
+ int_usb_c0_bc12: usb_c0_bc12 {
+ irq-pin = <&usb_c0_bc12_int_odl>;
+ flags = <GPIO_INT_EDGE_FALLING>;
+ handler = "bc12_interrupt";
+ };
+ };
+};
diff --git a/zephyr/program/corsola/voltorb/project.overlay b/zephyr/program/corsola/voltorb/project.overlay
index 8cd5a2bad8..7d0d2c79e8 100644
--- a/zephyr/program/corsola/voltorb/project.overlay
+++ b/zephyr/program/corsola/voltorb/project.overlay
@@ -42,6 +42,15 @@
cosmx_ap20cbl-2 {
compatible = "cosmx,ap20cbl-2", "battery-smart";
};
+ lgc_ap19b8k {
+ compatible = "lgc,ap19b8k", "battery-smart";
+ };
+ panasonic_ap19b5k {
+ compatible = "panasonic,ap19b5k", "battery-smart";
+ };
+ smp_ap18c7k {
+ compatible = "smp,ap18c7k", "battery-smart";
+ };
};
cros-keyscan {
diff --git a/zephyr/program/nissa/xivu/overlay.dtsi b/zephyr/program/nissa/xivu/overlay.dtsi
index 402f0e2f2f..224eb725d7 100644
--- a/zephyr/program/nissa/xivu/overlay.dtsi
+++ b/zephyr/program/nissa/xivu/overlay.dtsi
@@ -257,10 +257,22 @@
unused-pins {
compatible = "unused-gpios";
unused-gpios =
- <&gpio8 5 0>,
+ <&gpio3 2 0>,
+ <&gpio3 5 0>,
<&gpio3 6 0>,
- <&gpiod 7 0>,
+ <&gpio5 7 0>,
<&gpio6 0 0>,
+ <&gpio6 3 0>,
+ <&gpio7 3 0>,
+ <&gpio8 1 0>,
+ <&gpio8 3 0>,
+ <&gpio8 5 0>,
+ <&gpio8 6 0>,
+ <&gpioa 0 0>,
+ <&gpiob 1 0>,
+ <&gpiob 7 0>,
+ <&gpiod 7 0>,
+ <&gpioc 7 0>,
<&gpiof 2 0>,
<&gpiof 3 0>;
};
@@ -381,3 +393,13 @@
pinctrl-0 = <&espi_lpc_gp46_47_51_52_53_54_55_57>;
pinctrl-names = "default";
};
+
+/*
+ * Declare GPIOs that have leakage current caused by board issues here. NPCX ec
+ * will disable their input buffers before entering deep sleep and restore them
+ * after waking up automatically for better power consumption.
+ */
+&power_leakage_io {
+ leak-gpios = <&gpioa 4 0
+ &gpiof 1 0>;
+};