Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

How to get 1600Mhz on the mx1?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #31
    Compiling the bcm4329 driver is a real pain in the ass. It's not compiling and i don't know hot to solve it, the build log shows this:
    make[4]: *** [drivers/net/wireless/bcm4329/wl_iw.o] Error 1make[3]: *** [drivers/net/wireless/bcm4329] Error 2
    make[2]: *** [drivers/net/wireless] Error 2
    make[1]: *** [drivers/net] Error 2
    make: *** [drivers] Error 2
    If i remove "-Werror" in drivers/net/wireless/bmc4329/Makefile then it shows this:
    arch/arm/mach-rk30/built-in.o: In function `bcm4329_set_block':
    board-rk30-box-rfkill.c.text+0xa518): undefined reference to `rk29sdk_wifi_power_state'
    board-rk30-box-rfkill.c.text+0xa524): undefined reference to `rk29sdk_bt_power_state'
    net/built-in.o: In function `wiphy_rfkill_start_polling':
    activity_stats.c.text+0x10f760): undefined reference to `rfkill_resume_polling'
    net/built-in.o: In function `rfkill_rk_set_power':
    activity_stats.c.text+0x146aa8): undefined reference to `rk29sdk_wifi_power_state'
    activity_stats.c.text+0x146ab4): undefined reference to `rk29sdk_bt_power_state'
    make: *** [.tmp_vmlinux1] Error 1

    So if you have any ideas, i'm listening.

    Cheers!
    There are 10 types of people in the world: Those who understand binary, and those who don't...

    If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif

    Comment


      #32
      Originally posted by daemonium View Post
      Compiling the bcm4329 driver is a real pain in the ass. It's not compiling and i don't know hot to solve it, the build log shows this:

      If i remove "-Werror" in drivers/net/wireless/bmc4329/Makefile then it shows this:

      So if you have any ideas, i'm listening.

      Cheers!
      I looked at the kernel sources and I noticed that:

      1. rfkill_resume_polling is defined in net/rfkill/core.c

      2. as far as rk29sdk_wifi_power_state and rk29sdk_bt_power_state are concerned, I noticed that these symbols appear in various files as extern. The only file where they are defined is:
      ./arch/arm/mach-rk30/board-rk30-sdk-sdmmc.c
      but the lines which define them are commented.

      Moving from these premises, I would try to find how to compile into the kernel the net/rfkill/core.c (i.e., finding which option enables it) and I would modify ./arch/arm/mach-rk30/board-rk30-sdk-sdmmc.c removing the comments where the two symbols above are defined.

      Keep us informed if you make any advance

      Comment


        #33
        MX1 1704Mhz

        MX1 now running at 1704Mhz and stable.
        Antutu 10281.
        but no wifi or bt.
        Can live without wifi but bt would be nice though........

        Comment


          #34
          Re: How to get 1600Mhz on the mx1?

          Originally posted by zvoddy23 View Post
          MX1 now running at 1704Mhz and stable.
          Antutu 10281.
          but no wifi or bt.
          Can live without wifi but bt would be nice though........
          What are you cooling it with? Heatsink + fan?

          Enviado mediante un tirachinas de largo alcance
          There are 10 types of people in the world: Those who understand binary, and those who don't...

          If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif

          Comment


            #35
            [QUOTE=daemonium;52838]What are you cooling it with? Heatsink + fan?

            Enviado mediante un tirachinas de largo alcance[/QUOTE

            Just a heatsink for a to-220 package transistor/regulator, and silicon holding it in place.
            And it may not even need this as it seems only slightly warm.

            Comment


              #36
              Re: How to get 1600Mhz on the mx1?

              Thanks, maybe there's something wrong with my unit, working at 1.2Ghz the heatsink gets a little hot. This is how it looks like, please, can you tell me what do you think?

              Enviado mediante un tirachinas de largo alcance
              Attached Files
              There are 10 types of people in the world: Those who understand binary, and those who don't...

              If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif

              Comment


                #37
                Originally posted by zvoddy23 View Post
                MX1 now running at 1704Mhz and stable.
                Antutu 10281.
                but no wifi or bt.
                Can live without wifi but bt would be nice though........
                Which rom are you using? Finless 1.7 for UG802?

                This would explain why the MX1 wifi does not work.

                Comment


                  #38
                  Originally posted by gianpaoloc View Post
                  Which rom are you using? Finless 1.7 for UG802?

                  This would explain why the MX1 wifi does not work.
                  Yes ....I'm using finless 1.7 ug802 ....This seems to make all the difference.
                  I cannot understand why my problematic MX1 is now trouble free & (clocked beyond factory parameters)
                  still working.
                  Was it wifi/bt power management causing issues with stock/fin1.5 rom's???? as even a 3A switchmode would still allow it to fail.....GMF

                  Comment


                    #39
                    Originally posted by daemonium View Post
                    Thanks, maybe there's something wrong with my unit, working at 1.2Ghz the heatsink gets a little hot. This is how it looks like, please, can you tell me what do you think?

                    Enviado mediante un tirachinas de largo alcance
                    I was ready to send my MX1 back to IN4DEALZ until i flashed finless1.7 ug802 rom...My MX! is now useable at least. I'm not running the full oc 1080 kernel as that bricked it , i am running the 720 kernel CPU1608.
                    Antutu reports it as 1704 Mhz.
                    P.S. Your heatsink mod is very neat & should be adequate???

                    Comment


                      #40
                      I tried to write here about the publication of drivers for MT5931 + MT6622, but to me didn't answer.
                      Maybe somebody else will try? "Little strokes fell great oaks".

                      Comment


                        #41
                        Originally posted by daemonium View Post
                        Compiling the bcm4329 driver is a real pain in the ass. It's not compiling and i don't know hot to solve it, the build log shows this:

                        If i remove "-Werror" in drivers/net/wireless/bmc4329/Makefile then it shows this:

                        So if you have any ideas, i'm listening.

                        Cheers!
                        Hi daemonium, any news from your compiling effort?

                        Please, keep us informed.

                        Comment


                          #42
                          Re: How to get 1600Mhz on the mx1?

                          Sorry, didn't had the time to play with it.
                          Regards


                          Enviado mediante un tirachinas de largo alcance
                          There are 10 types of people in the world: Those who understand binary, and those who don't...

                          If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif

                          Comment


                            #43
                            I'm pretty close to the end, i can smell it.. xD
                            Now i'm stuck at this error:
                            arch/arm/mach-rk30/built-in.o: In function `bcm4329_rfkill_suspend':
                            board-rk30-box-rfkill.c.text+0xa1d0): undefined reference to `rfkill_set_block'
                            make: *** [.tmp_vmlinux1] Error 1
                            Any ideas?
                            There are 10 types of people in the world: Those who understand binary, and those who don't...

                            If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif

                            Comment


                              #44
                              Originally posted by daemonium View Post
                              I'm pretty close to the end, i can smell it.. xD
                              Now i'm stuck at this error:
                              Now i'm stuck at this error:

                              arch/arm/mach-rk30/built-in.o: In function `bcm4329_rfkill_suspend':
                              board-rk30-box-rfkill.c.text+0xa1d0): undefined reference to `rfkill_set_block'
                              make: *** [.tmp_vmlinux1] Error 1


                              Any ideas?
                              The symbol seems to be defined in net/rfkill/core.c. It looks like you need to have CONFIG_RFKILL=yes in your .config to have this component compiled in.

                              Hope this helps

                              Comment


                                #45
                                Re: How to get 1600Mhz on the mx1?

                                I have it


                                Enviado mediante un tirachinas de largo alcance
                                There are 10 types of people in the world: Those who understand binary, and those who don't...

                                If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif

                                Comment

                                Working...
                                X