From owner-freebsd-arm@FreeBSD.ORG Thu Aug 22 05:27:13 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EE277406 for ; Thu, 22 Aug 2013 05:27:13 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-oa0-f41.google.com (mail-oa0-f41.google.com [209.85.219.41]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B44B22E26 for ; Thu, 22 Aug 2013 05:27:13 +0000 (UTC) Received: by mail-oa0-f41.google.com with SMTP id j6so2736628oag.28 for ; Wed, 21 Aug 2013 22:27:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:sender:subject:mime-version:content-type:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to; bh=k1Lhm3WxsCoXl45grQxf9DTvxKIweSNmlkExyt7LzIw=; b=HQdDmCRQA5BIvynQ6n+H1Q1Nf5/ILaeYDNvTkAfPLvM9SBG6ieKSIxq3gh51gL04Pt qwUlr9sPZF8TT6Z4zJK2dK8X9KszLXSf9aLeyoSf007jqbO7pZBQtSnf6kmgh6qG3LMK EwYhaJYZ7M2YjevDukAxPxMucT9hR6fS7CGHChfSTrRR75VoInDTZCvW181/PUvCW2Mw jQJ3aCrNw/N2wtjmUUXE/iS1SZqPkfws0e8LtnTH+SKxJn3VKGkPPAoECXisC2NJh1m3 eRu7mGvTRA4EAWee4zhht7kaVOMn8zqSMH6IWCTtbjzSkMy64u4dKhvHq5wvma35RtlW d5xA== X-Gm-Message-State: ALoCoQmMOBHkyw9gCX0RNngN79Bqr8btD/7M03cgKiDlGO3IZWxjTTO1HJhWcRGR48tL/g/SQgzg X-Received: by 10.60.133.71 with SMTP id pa7mr12183978oeb.44.1377149226886; Wed, 21 Aug 2013 22:27:06 -0700 (PDT) Received: from 53.imp.bsdimp.com (50-78-194-198-static.hfc.comcastbusiness.net. [50.78.194.198]) by mx.google.com with ESMTPSA id tz10sm16180965obc.10.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 21 Aug 2013 22:27:05 -0700 (PDT) Sender: Warner Losh Subject: Re: [PATCH] SDIO support for Globalscale Dreamplug Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii From: Warner Losh In-Reply-To: <20130821095849.GA7322@olymp.kibab.com> Date: Wed, 21 Aug 2013 23:27:03 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <8D289F43-261C-43F2-A4AC-F027E70558B7@bsdimp.com> References: <20130702145905.GA1847@olymp.kibab.com> <51D3097A.8010601@FreeBSD.org> <51D3282C.1090701@bakulin.de> <20130703222002.GA60491@olymp.kibab.com> <51D50C55.1040300@myspectrum.nl> <51D531CB.3060300@bakulin.de> <51D5FE4C.9060102@bakulin.de> <20130821095849.GA7322@olymp.kibab.com> To: Ilya Bakulin X-Mailer: Apple Mail (2.1085) Cc: Alexander Motin , freebsd-arm@freebsd.org, freebsd-embedded@freebsd.org X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 05:27:14 -0000 What's the best git repo URL to clone from? Warner On Aug 21, 2013, at 3:58 AM, Ilya Bakulin wrote: > So, after fixing some bugs in my own code and adding a couple of bus = methods > I am finally able to load the firmware onto the card and receive = "Firmare started" message. >=20 > Next step will be adding support for setting IRQ handlers (SDIO stack) = and writing the code > to connect mv_sdiowl driver to our net80211 stack (Adrian I hope you = will help with this). >=20 > As SD8787 adapter uses the binary firmware, I had to import it in the = tree. As I'm doing all testing > without any root FS, I compile the formware blob into the kernel. > The patch below is therefore incomplete; full snapshot is kept under = [1]. > To activate mv_sdiowl driver, add mmc, mv_sdio, mv_sdiowl and = mv_sdiowl_fw to the kernel config. >=20 > [1] = https://github.com/kibab/freebsd/compare/master...kibab-dplug#files_bucket= >=20 > I will keep you all updated.