The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/src/arm/mt7629.dtsi

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 // SPDX-License-Identifier: GPL-2.0
    2 /*
    3  * Copyright (c) 2019 MediaTek Inc.
    4  *
    5  * Author: Ryder Lee <ryder.lee@mediatek.com>
    6  */
    7 
    8 #include <dt-bindings/interrupt-controller/irq.h>
    9 #include <dt-bindings/interrupt-controller/arm-gic.h>
   10 #include <dt-bindings/clock/mt7629-clk.h>
   11 #include <dt-bindings/power/mt7622-power.h>
   12 #include <dt-bindings/gpio/gpio.h>
   13 #include <dt-bindings/phy/phy.h>
   14 #include <dt-bindings/reset/mt7629-resets.h>
   15 
   16 / {
   17         compatible = "mediatek,mt7629";
   18         interrupt-parent = <&sysirq>;
   19         #address-cells = <1>;
   20         #size-cells = <1>;
   21 
   22         cpus {
   23                 #address-cells = <1>;
   24                 #size-cells = <0>;
   25                 enable-method = "mediatek,mt6589-smp";
   26 
   27                 cpu0: cpu@0 {
   28                         device_type = "cpu";
   29                         compatible = "arm,cortex-a7";
   30                         reg = <0x0>;
   31                         clock-frequency = <1250000000>;
   32                         cci-control-port = <&cci_control2>;
   33                 };
   34 
   35                 cpu1: cpu@1 {
   36                         device_type = "cpu";
   37                         compatible = "arm,cortex-a7";
   38                         reg = <0x1>;
   39                         clock-frequency = <1250000000>;
   40                         cci-control-port = <&cci_control2>;
   41                 };
   42         };
   43 
   44         pmu {
   45                 compatible = "arm,cortex-a7-pmu";
   46                 interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_LOW>,
   47                              <GIC_SPI 9 IRQ_TYPE_LEVEL_LOW>;
   48                 interrupt-affinity = <&cpu0>, <&cpu1>;
   49         };
   50 
   51         clk20m: oscillator-0 {
   52                 compatible = "fixed-clock";
   53                 #clock-cells = <0>;
   54                 clock-frequency = <20000000>;
   55                 clock-output-names = "clk20m";
   56         };
   57 
   58         clk40m: oscillator-1 {
   59                 compatible = "fixed-clock";
   60                 #clock-cells = <0>;
   61                 clock-frequency = <40000000>;
   62                 clock-output-names = "clkxtal";
   63         };
   64 
   65         timer {
   66                 compatible = "arm,armv7-timer";
   67                 interrupt-parent = <&gic>;
   68                 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
   69                              <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
   70                              <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
   71                              <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
   72                 clock-frequency = <20000000>;
   73         };
   74 
   75         soc {
   76                 compatible = "simple-bus";
   77                 #address-cells = <1>;
   78                 #size-cells = <1>;
   79                 ranges;
   80 
   81                 infracfg: syscon@10000000 {
   82                         compatible = "mediatek,mt7629-infracfg", "syscon";
   83                         reg = <0x10000000 0x1000>;
   84                         #clock-cells = <1>;
   85                 };
   86 
   87                 pericfg: syscon@10002000 {
   88                         compatible = "mediatek,mt7629-pericfg", "syscon";
   89                         reg = <0x10002000 0x1000>;
   90                         #clock-cells = <1>;
   91                 };
   92 
   93                 scpsys: power-controller@10006000 {
   94                         compatible = "mediatek,mt7629-scpsys",
   95                                      "mediatek,mt7622-scpsys";
   96                         #power-domain-cells = <1>;
   97                         reg = <0x10006000 0x1000>;
   98                         clocks = <&topckgen CLK_TOP_HIF_SEL>;
   99                         clock-names = "hif_sel";
  100                         assigned-clocks = <&topckgen CLK_TOP_HIF_SEL>;
  101                         assigned-clock-parents = <&topckgen CLK_TOP_UNIVPLL1_D2>;
  102                         infracfg = <&infracfg>;
  103                 };
  104 
  105                 timer: timer@10009000 {
  106                         compatible = "mediatek,mt7629-timer",
  107                                      "mediatek,mt6765-timer";
  108                         reg = <0x10009000 0x60>;
  109                         interrupts = <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>,
  110                                      <GIC_SPI 170 IRQ_TYPE_LEVEL_HIGH>;
  111                         clocks = <&clk20m>;
  112                         clock-names = "clk20m";
  113                 };
  114 
  115                 sysirq: interrupt-controller@10200a80 {
  116                         compatible = "mediatek,mt7629-sysirq",
  117                                      "mediatek,mt6577-sysirq";
  118                         reg = <0x10200a80 0x20>;
  119                         interrupt-controller;
  120                         #interrupt-cells = <3>;
  121                         interrupt-parent = <&gic>;
  122                 };
  123 
  124                 apmixedsys: syscon@10209000 {
  125                         compatible = "mediatek,mt7629-apmixedsys", "syscon";
  126                         reg = <0x10209000 0x1000>;
  127                         #clock-cells = <1>;
  128                 };
  129 
  130                 rng: rng@1020f000 {
  131                         compatible = "mediatek,mt7629-rng",
  132                                      "mediatek,mt7623-rng";
  133                         reg = <0x1020f000 0x100>;
  134                         clocks = <&infracfg CLK_INFRA_TRNG_PD>;
  135                         clock-names = "rng";
  136                 };
  137 
  138                 topckgen: syscon@10210000 {
  139                         compatible = "mediatek,mt7629-topckgen", "syscon";
  140                         reg = <0x10210000 0x1000>;
  141                         #clock-cells = <1>;
  142                 };
  143 
  144                 watchdog: watchdog@10212000 {
  145                         compatible = "mediatek,mt7629-wdt",
  146                                      "mediatek,mt6589-wdt";
  147                         reg = <0x10212000 0x100>;
  148                 };
  149 
  150                 pio: pinctrl@10217000 {
  151                         compatible = "mediatek,mt7629-pinctrl";
  152                         reg = <0x10217000 0x8000>,
  153                               <0x10005000 0x1000>;
  154                         reg-names = "base", "eint";
  155                         gpio-controller;
  156                         gpio-ranges = <&pio 0 0 79>;
  157                         #gpio-cells = <2>;
  158                         #interrupt-cells = <2>;
  159                         interrupt-controller;
  160                         interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>;
  161                         interrupt-parent = <&gic>;
  162                 };
  163 
  164                 gic: interrupt-controller@10300000 {
  165                         compatible = "arm,gic-400";
  166                         interrupt-controller;
  167                         #interrupt-cells = <3>;
  168                         interrupt-parent = <&gic>;
  169                         reg = <0x10310000 0x1000>,
  170                               <0x10320000 0x1000>,
  171                               <0x10340000 0x2000>,
  172                               <0x10360000 0x2000>;
  173                 };
  174 
  175                 cci: cci@10390000 {
  176                         compatible = "arm,cci-400";
  177                         #address-cells = <1>;
  178                         #size-cells = <1>;
  179                         reg = <0x10390000 0x1000>;
  180                         ranges = <0 0x10390000 0x10000>;
  181 
  182                         cci_control0: slave-if@1000 {
  183                                 compatible = "arm,cci-400-ctrl-if";
  184                                 interface-type = "ace-lite";
  185                                 reg = <0x1000 0x1000>;
  186                         };
  187 
  188                         cci_control1: slave-if@4000 {
  189                                 compatible = "arm,cci-400-ctrl-if";
  190                                 interface-type = "ace";
  191                                 reg = <0x4000 0x1000>;
  192                         };
  193 
  194                         cci_control2: slave-if@5000 {
  195                                 compatible = "arm,cci-400-ctrl-if";
  196                                 interface-type = "ace";
  197                                 reg = <0x5000 0x1000>;
  198                         };
  199 
  200                         pmu@9000 {
  201                                 compatible = "arm,cci-400-pmu,r1";
  202                                 reg = <0x9000 0x5000>;
  203                                 interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>,
  204                                              <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>,
  205                                              <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>,
  206                                              <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>,
  207                                              <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
  208                         };
  209                 };
  210 
  211                 uart0: serial@11002000 {
  212                         compatible = "mediatek,mt7629-uart",
  213                                      "mediatek,mt6577-uart";
  214                         reg = <0x11002000 0x400>;
  215                         interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_LOW>;
  216                         clocks = <&topckgen CLK_TOP_UART_SEL>,
  217                                  <&pericfg CLK_PERI_UART0_PD>;
  218                         clock-names = "baud", "bus";
  219                         status = "disabled";
  220                 };
  221 
  222                 uart1: serial@11003000 {
  223                         compatible = "mediatek,mt7629-uart",
  224                                      "mediatek,mt6577-uart";
  225                         reg = <0x11003000 0x400>;
  226                         interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_LOW>;
  227                         clocks = <&topckgen CLK_TOP_UART_SEL>,
  228                                  <&pericfg CLK_PERI_UART1_PD>;
  229                         clock-names = "baud", "bus";
  230                         status = "disabled";
  231                 };
  232 
  233                 uart2: serial@11004000 {
  234                         compatible = "mediatek,mt7629-uart",
  235                                      "mediatek,mt6577-uart";
  236                         reg = <0x11004000 0x400>;
  237                         interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_LOW>;
  238                         clocks = <&topckgen CLK_TOP_UART_SEL>,
  239                                  <&pericfg CLK_PERI_UART2_PD>;
  240                         clock-names = "baud", "bus";
  241                         status = "disabled";
  242                 };
  243 
  244                 pwm: pwm@11006000 {
  245                         compatible = "mediatek,mt7629-pwm";
  246                         reg = <0x11006000 0x1000>;
  247                         #pwm-cells = <2>;
  248                         clocks = <&topckgen CLK_TOP_PWM_SEL>,
  249                                  <&pericfg CLK_PERI_PWM_PD>,
  250                                  <&pericfg CLK_PERI_PWM1_PD>;
  251                         clock-names = "top", "main", "pwm1";
  252                         assigned-clocks = <&topckgen CLK_TOP_PWM_SEL>;
  253                         assigned-clock-parents =
  254                                         <&topckgen CLK_TOP_UNIVPLL2_D4>;
  255                         status = "disabled";
  256                 };
  257 
  258                 i2c: i2c@11007000 {
  259                         compatible = "mediatek,mt7629-i2c",
  260                                      "mediatek,mt2712-i2c";
  261                         reg = <0x11007000 0x90>,
  262                               <0x11000100 0x80>;
  263                         interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_LOW>;
  264                         clock-div = <4>;
  265                         clocks = <&pericfg CLK_PERI_I2C0_PD>,
  266                                  <&pericfg CLK_PERI_AP_DMA_PD>;
  267                         clock-names = "main", "dma";
  268                         assigned-clocks = <&topckgen CLK_TOP_AXI_SEL>;
  269                         assigned-clock-parents = <&topckgen CLK_TOP_SYSPLL1_D2>;
  270                         #address-cells = <1>;
  271                         #size-cells = <0>;
  272                         status = "disabled";
  273                 };
  274 
  275                 spi: spi@1100a000 {
  276                         compatible = "mediatek,mt7629-spi",
  277                                      "mediatek,mt7622-spi";
  278                         #address-cells = <1>;
  279                         #size-cells = <0>;
  280                         reg = <0x1100a000 0x100>;
  281                         interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_LOW>;
  282                         clocks = <&topckgen CLK_TOP_SYSPLL3_D2>,
  283                                  <&topckgen CLK_TOP_SPI0_SEL>,
  284                                  <&pericfg CLK_PERI_SPI0_PD>;
  285                         clock-names = "parent-clk", "sel-clk", "spi-clk";
  286                         status = "disabled";
  287                 };
  288 
  289                 qspi: spi@11014000 {
  290                         compatible = "mediatek,mt7629-nor",
  291                                      "mediatek,mt8173-nor";
  292                         reg = <0x11014000 0xe0>;
  293                         clocks = <&pericfg CLK_PERI_FLASH_PD>,
  294                                  <&topckgen CLK_TOP_FLASH_SEL>;
  295                         clock-names = "spi", "sf";
  296                         #address-cells = <1>;
  297                         #size-cells = <0>;
  298                         status = "disabled";
  299                 };
  300 
  301                 ssusbsys: syscon@1a000000 {
  302                         compatible = "mediatek,mt7629-ssusbsys", "syscon";
  303                         reg = <0x1a000000 0x1000>;
  304                         #clock-cells = <1>;
  305                         #reset-cells = <1>;
  306                 };
  307 
  308                 ssusb: usb@1a0c0000 {
  309                         compatible = "mediatek,mt7629-xhci",
  310                                      "mediatek,mtk-xhci";
  311                         reg = <0x1a0c0000 0x01000>,
  312                               <0x1a0c3e00 0x0100>;
  313                         reg-names = "mac", "ippc";
  314                         interrupts = <GIC_SPI 232 IRQ_TYPE_LEVEL_LOW>;
  315                         clocks = <&ssusbsys CLK_SSUSB_SYS_EN>,
  316                                  <&ssusbsys CLK_SSUSB_REF_EN>,
  317                                  <&ssusbsys CLK_SSUSB_MCU_EN>,
  318                                  <&ssusbsys CLK_SSUSB_DMA_EN>;
  319                         clock-names = "sys_ck", "ref_ck", "mcu_ck", "dma_ck";
  320                         assigned-clocks = <&topckgen CLK_TOP_AXI_SEL>,
  321                                           <&topckgen CLK_TOP_SATA_SEL>,
  322                                           <&topckgen CLK_TOP_HIF_SEL>;
  323                         assigned-clock-parents = <&topckgen CLK_TOP_SYSPLL1_D2>,
  324                                                  <&topckgen CLK_TOP_UNIVPLL2_D4>,
  325                                                  <&topckgen CLK_TOP_UNIVPLL1_D2>;
  326                         power-domains = <&scpsys MT7622_POWER_DOMAIN_HIF1>;
  327                         phys = <&u2port0 PHY_TYPE_USB2>,
  328                                <&u3port0 PHY_TYPE_USB3>;
  329                         status = "disabled";
  330                 };
  331 
  332                 u3phy0: t-phy@1a0c4000 {
  333                         compatible = "mediatek,mt7629-tphy",
  334                                      "mediatek,generic-tphy-v2";
  335                         #address-cells = <1>;
  336                         #size-cells = <1>;
  337                         ranges = <0 0x1a0c4000 0xe00>;
  338                         status = "disabled";
  339 
  340                         u2port0: usb-phy@0 {
  341                                 reg = <0 0x700>;
  342                                 clocks = <&ssusbsys CLK_SSUSB_U2_PHY_EN>;
  343                                 clock-names = "ref";
  344                                 #phy-cells = <1>;
  345                                 status = "okay";
  346                         };
  347 
  348                         u3port0: usb-phy@700 {
  349                                 reg = <0x700 0x700>;
  350                                 clocks = <&clk20m>;
  351                                 clock-names = "ref";
  352                                 #phy-cells = <1>;
  353                                 status = "okay";
  354                         };
  355                 };
  356 
  357                 pciesys: syscon@1a100800 {
  358                         compatible = "mediatek,mt7629-pciesys", "syscon";
  359                         reg = <0x1a100800 0x1000>;
  360                         #clock-cells = <1>;
  361                         #reset-cells = <1>;
  362                 };
  363 
  364                 pciecfg: pciecfg@1a140000 {
  365                         compatible = "mediatek,generic-pciecfg", "syscon";
  366                         reg = <0x1a140000 0x1000>;
  367                 };
  368 
  369                 pcie1: pcie@1a145000 {
  370                         compatible = "mediatek,mt7629-pcie";
  371                         device_type = "pci";
  372                         reg = <0x1a145000 0x1000>;
  373                         reg-names = "port1";
  374                         linux,pci-domain = <1>;
  375                         #address-cells = <3>;
  376                         #size-cells = <2>;
  377                         interrupts = <GIC_SPI 229 IRQ_TYPE_LEVEL_LOW>;
  378                         interrupt-names = "pcie_irq";
  379                         clocks = <&pciesys CLK_PCIE_P1_MAC_EN>,
  380                                  <&pciesys CLK_PCIE_P0_AHB_EN>,
  381                                  <&pciesys CLK_PCIE_P1_AUX_EN>,
  382                                  <&pciesys CLK_PCIE_P1_AXI_EN>,
  383                                  <&pciesys CLK_PCIE_P1_OBFF_EN>,
  384                                  <&pciesys CLK_PCIE_P1_PIPE_EN>;
  385                         clock-names = "sys_ck1", "ahb_ck1",
  386                                       "aux_ck1", "axi_ck1",
  387                                       "obff_ck1", "pipe_ck1";
  388                         assigned-clocks = <&topckgen CLK_TOP_SATA_SEL>,
  389                                           <&topckgen CLK_TOP_AXI_SEL>,
  390                                           <&topckgen CLK_TOP_HIF_SEL>;
  391                         assigned-clock-parents = <&topckgen CLK_TOP_UNIVPLL2_D4>,
  392                                                  <&topckgen CLK_TOP_SYSPLL1_D2>,
  393                                                  <&topckgen CLK_TOP_UNIVPLL1_D2>;
  394                         phys = <&pcieport1 PHY_TYPE_PCIE>;
  395                         phy-names = "pcie-phy1";
  396                         power-domains = <&scpsys MT7622_POWER_DOMAIN_HIF0>;
  397                         bus-range = <0x00 0xff>;
  398                         ranges = <0x82000000 0 0x20000000 0x20000000 0 0x10000000>;
  399                         status = "disabled";
  400 
  401                         #interrupt-cells = <1>;
  402                         interrupt-map-mask = <0 0 0 7>;
  403                         interrupt-map = <0 0 0 1 &pcie_intc1 0>,
  404                                         <0 0 0 2 &pcie_intc1 1>,
  405                                         <0 0 0 3 &pcie_intc1 2>,
  406                                         <0 0 0 4 &pcie_intc1 3>;
  407                         pcie_intc1: interrupt-controller {
  408                                 interrupt-controller;
  409                                 #address-cells = <0>;
  410                                 #interrupt-cells = <1>;
  411                         };
  412                 };
  413 
  414                 pciephy1: t-phy@1a14a000 {
  415                         compatible = "mediatek,mt7629-tphy",
  416                                      "mediatek,generic-tphy-v2";
  417                         #address-cells = <1>;
  418                         #size-cells = <1>;
  419                         ranges = <0 0x1a14a000 0x1000>;
  420                         status = "disabled";
  421 
  422                         pcieport1: pcie-phy@0 {
  423                                 reg = <0 0x1000>;
  424                                 clocks = <&clk20m>;
  425                                 clock-names = "ref";
  426                                 #phy-cells = <1>;
  427                                 status = "okay";
  428                         };
  429                 };
  430 
  431                 ethsys: syscon@1b000000 {
  432                         compatible = "mediatek,mt7629-ethsys", "syscon";
  433                         reg = <0x1b000000 0x1000>;
  434                         #clock-cells = <1>;
  435                         #reset-cells = <1>;
  436                 };
  437 
  438                 eth: ethernet@1b100000 {
  439                         compatible = "mediatek,mt7629-eth","syscon";
  440                         reg = <0x1b100000 0x20000>;
  441                         interrupts = <GIC_SPI 223 IRQ_TYPE_LEVEL_LOW>,
  442                                      <GIC_SPI 224 IRQ_TYPE_LEVEL_LOW>,
  443                                      <GIC_SPI 225 IRQ_TYPE_LEVEL_LOW>;
  444                         clocks = <&topckgen CLK_TOP_ETH_SEL>,
  445                                  <&topckgen CLK_TOP_F10M_REF_SEL>,
  446                                  <&ethsys CLK_ETH_ESW_EN>,
  447                                  <&ethsys CLK_ETH_GP0_EN>,
  448                                  <&ethsys CLK_ETH_GP1_EN>,
  449                                  <&ethsys CLK_ETH_GP2_EN>,
  450                                  <&ethsys CLK_ETH_FE_EN>,
  451                                  <&sgmiisys0 CLK_SGMII_TX_EN>,
  452                                  <&sgmiisys0 CLK_SGMII_RX_EN>,
  453                                  <&sgmiisys0 CLK_SGMII_CDR_REF>,
  454                                  <&sgmiisys0 CLK_SGMII_CDR_FB>,
  455                                  <&sgmiisys1 CLK_SGMII_TX_EN>,
  456                                  <&sgmiisys1 CLK_SGMII_RX_EN>,
  457                                  <&sgmiisys1 CLK_SGMII_CDR_REF>,
  458                                  <&sgmiisys1 CLK_SGMII_CDR_FB>,
  459                                  <&apmixedsys CLK_APMIXED_SGMIPLL>,
  460                                  <&apmixedsys CLK_APMIXED_ETH2PLL>;
  461                         clock-names = "ethif", "sgmiitop", "esw", "gp0", "gp1",
  462                                       "gp2", "fe", "sgmii_tx250m", "sgmii_rx250m",
  463                                       "sgmii_cdr_ref", "sgmii_cdr_fb",
  464                                       "sgmii2_tx250m", "sgmii2_rx250m",
  465                                       "sgmii2_cdr_ref", "sgmii2_cdr_fb",
  466                                       "sgmii_ck", "eth2pll";
  467                         assigned-clocks = <&topckgen CLK_TOP_ETH_SEL>,
  468                                           <&topckgen CLK_TOP_F10M_REF_SEL>;
  469                         assigned-clock-parents = <&topckgen CLK_TOP_UNIVPLL1_D2>,
  470                                                  <&topckgen CLK_TOP_SGMIIPLL_D2>;
  471                         power-domains = <&scpsys MT7622_POWER_DOMAIN_ETHSYS>;
  472                         mediatek,ethsys = <&ethsys>;
  473                         mediatek,sgmiisys = <&sgmiisys0>, <&sgmiisys1>;
  474                         mediatek,infracfg = <&infracfg>;
  475                         #address-cells = <1>;
  476                         #size-cells = <0>;
  477                         status = "disabled";
  478                 };
  479 
  480                 sgmiisys0: syscon@1b128000 {
  481                         compatible = "mediatek,mt7629-sgmiisys", "syscon";
  482                         reg = <0x1b128000 0x3000>;
  483                         #clock-cells = <1>;
  484                 };
  485 
  486                 sgmiisys1: syscon@1b130000 {
  487                         compatible = "mediatek,mt7629-sgmiisys", "syscon";
  488                         reg = <0x1b130000 0x3000>;
  489                         #clock-cells = <1>;
  490                 };
  491         };
  492 };

Cache object: 170d40aaa96df06c8ca282eadea3caac


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.