Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.18 38 lines 867 B view raw
1// SPDX-License-Identifier: GPL-2.0+ OR MIT 2/* 3 * Mac Pro (M2 Ultra, 2023) and Mac Studio (M2 Ultra, 2023) 4 * 5 * This file contains the parts common to J180 and J475 devices with t6022. 6 * 7 * target-type: J180d / J475d 8 * 9 * Copyright The Asahi Linux Contributors 10 */ 11 12/* delete power-domains for missing disp0 / disp0_die1 */ 13/delete-node/ &ps_disp0_cpu0; 14/delete-node/ &ps_disp0_fe; 15 16/delete-node/ &ps_disp0_cpu0_die1; 17/delete-node/ &ps_disp0_fe_die1; 18 19/* USB Type C */ 20&i2c0 { 21 /* front-right */ 22 hpm4: usb-pd@39 { 23 compatible = "apple,cd321x"; 24 reg = <0x39>; 25 interrupt-parent = <&pinctrl_ap>; 26 interrupts = <44 IRQ_TYPE_LEVEL_LOW>; 27 interrupt-names = "irq"; 28 }; 29 30 /* front-left */ 31 hpm5: usb-pd@3a { 32 compatible = "apple,cd321x"; 33 reg = <0x3a>; 34 interrupt-parent = <&pinctrl_ap>; 35 interrupts = <44 IRQ_TYPE_LEVEL_LOW>; 36 interrupt-names = "irq"; 37 }; 38};