Re: [riot-devel] Cortex M33 support

2018-12-07 Thread Dylan Laduranty
FYI, Microchip sent me a SAML10 and a SAML11 (Cortex-M23)  Xplained boards
so I can port them to RIOT.
Yesterday I was able to run tests/leds on SAML10, but it is still too early
to share my ugly hacked code.
As I saw we can reuse cortexm_common stuff because armv8-M baseline and
mainline instructions set are 100% compatible with armv6-M instructions
set. But I found out some bits disappeared from some registers like
SCB_CCR_STKALIGN bit.

I also think it would be great to support brand new ARM MCU out-of-box !

Le mer. 17 oct. 2018 à 19:44, Thomas C. Schmidt 
a écrit :

> Hi Juan,
>
> thanks for pointing out: I'll try and check with our contacts to NXP.
>
> Best,
>   Thomas
> On 17/10/2018 14:17, Juan Ignacio Carrano wrote:
> > Hi everyone,
> >
> > Is anybody working / wanting to work on Cortex M33 support? Currently
> > there are no chips available for the general public. AFAICT Nordic and
> > NXP are the only ones with pre-production parts.
> >
> > I'm trying to get samples from both. It would be great if we could have
> > at least some basic support for when the devices reach the market.
> >
> > Also, if somebody has closer contact with either Nordic or NXP, it would
> > be great.
> >
> > Regards,
> >
> > Juan Ignacio Carrano
> >
> > ___
> > devel mailing list
> > devel@riot-os.org
> > https://lists.riot-os.org/mailman/listinfo/devel
> >
>
> --
>
> Prof. Dr. Thomas C. Schmidt
> ° Hamburg University of Applied Sciences  Berliner Tor 7 °
> ° Dept. Informatik, Internet Technologies Group   20099 Hamburg, Germany °
> ° http://inet.haw-hamburg.de/members/schmidt  Fon: +49-40-42875-8452 °
>
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel
>


-- 
Dylan Laduranty
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Cortex M33 support

2018-10-17 Thread Thomas C. Schmidt

Hi Juan,

thanks for pointing out: I'll try and check with our contacts to NXP.

Best,
 Thomas
On 17/10/2018 14:17, Juan Ignacio Carrano wrote:

Hi everyone,

Is anybody working / wanting to work on Cortex M33 support? Currently
there are no chips available for the general public. AFAICT Nordic and
NXP are the only ones with pre-production parts.

I'm trying to get samples from both. It would be great if we could have
at least some basic support for when the devices reach the market.

Also, if somebody has closer contact with either Nordic or NXP, it would
be great.

Regards,

Juan Ignacio Carrano

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel



--

Prof. Dr. Thomas C. Schmidt
° Hamburg University of Applied Sciences  Berliner Tor 7 °
° Dept. Informatik, Internet Technologies Group   20099 Hamburg, Germany °
° http://inet.haw-hamburg.de/members/schmidt  Fon: +49-40-42875-8452 °

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Cortex M33 support

2018-10-17 Thread Emmanuel Baccelli
A crucial feature about this new arch is the availability of secure vs
non-secure execution environment within the same chip.
=> we need to design how to leverage these 2 environments (simultaneously)
with RIOT.

On Wed, Oct 17, 2018 at 4:43 PM Juan Ignacio Carrano 
wrote:

>
>
> On 10/17/18 4:19 PM, Alexandre Abadie wrote:
> > Hi,
> >
> > Not M33, but Microchip is also selling an evaluation board with an M23.
> >
> > See
> https://uk.farnell.com/microchip/dm320205/kit-eval-xplained-pro-32-bits/dp/2901261
> >
> > Alex
> >
> > PS: I'm not working on it.
> >
>
> Excellent. The basic CPU support for box cortex should be roughly the
> same (something like "armv8_common"), am I right?
>
> I wonder how many of the new features are usable in RIOT. The stack
> limit seems interesting.
>
> Regards,
>
> Juan.
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel
>
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Cortex M33 support

2018-10-17 Thread Juan Ignacio Carrano



On 10/17/18 4:19 PM, Alexandre Abadie wrote:

Hi,

Not M33, but Microchip is also selling an evaluation board with an M23.

See 
https://uk.farnell.com/microchip/dm320205/kit-eval-xplained-pro-32-bits/dp/2901261

Alex

PS: I'm not working on it.



Excellent. The basic CPU support for box cortex should be roughly the 
same (something like "armv8_common"), am I right?


I wonder how many of the new features are usable in RIOT. The stack 
limit seems interesting.


Regards,

Juan.
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Cortex M33 support

2018-10-17 Thread Alexandre Abadie
Hi,

Not M33, but Microchip is also selling an evaluation board with an M23.

See 
https://uk.farnell.com/microchip/dm320205/kit-eval-xplained-pro-32-bits/dp/2901261

Alex

PS: I'm not working on it.

- Le 17 Oct 18, à 14:17, Juan Ignacio Carrano j.carr...@fu-berlin.de a 
écrit :

> Hi everyone,
> 
> Is anybody working / wanting to work on Cortex M33 support? Currently
> there are no chips available for the general public. AFAICT Nordic and
> NXP are the only ones with pre-production parts.
> 
> I'm trying to get samples from both. It would be great if we could have
> at least some basic support for when the devices reach the market.
> 
> Also, if somebody has closer contact with either Nordic or NXP, it would
> be great.
> 
> Regards,
> 
> Juan Ignacio Carrano
> 
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


[riot-devel] Cortex M33 support

2018-10-17 Thread Juan Ignacio Carrano

Hi everyone,

Is anybody working / wanting to work on Cortex M33 support? Currently 
there are no chips available for the general public. AFAICT Nordic and 
NXP are the only ones with pre-production parts.


I'm trying to get samples from both. It would be great if we could have 
at least some basic support for when the devices reach the market.


Also, if somebody has closer contact with either Nordic or NXP, it would 
be great.


Regards,

Juan Ignacio Carrano

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel