-
Notifications
You must be signed in to change notification settings - Fork 426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any way to replace 'Area' with 'Component' in plugin's implementation? #441
Comments
Hi, currently, the only way to get component stuff, is to explicitly define them and instanciate them in a given plugin, like the data cache for instance. So far, i didn't thinked that having clear boundaries inside VexRiscv itself would realy matther, given the "small size" of the cpu. |
Yes, i'm running on a large scale CPU design, benchmarking against ARM A76, but it has larger decode width, at least 8. The whole layout has configurable 1-16 cores with L3 shared cache slices. I think the scale of this chip is really large, compared to VexRiscv. Currently, I am exploring the feasibility of SpinalHDL and VexRiscv on large scale ASIC design. I think vexriscv CPU framework demonstrates a clear framework, configurability, and scalability. It reduces the control complexity of the CPU design. But its not friendly to backend's layout, for now. Will there be features oriented towards ASIC design in the future(Spinalhdl or vexriscv series)? thanks! |
Hi, About frameworks, did you toke a look at VexiiRiscv ? (it doesn't solve the component thing, but is interresting)
There as been some improvements related to asic, mostly :
but currently, nothing else is planned. One question i have, is would the backend tools be capable to work by filtering stuff by names ? (instead of by module) |
hi, For ASIC design, when the chip scale exceeds 1 billion transistors, the challenges we are facing are as follows:
The best solution is to divide the architecture into multiple modules during the micro-arch design phase.
Currently my team is interested in spinalhdl and its framework, we will do some explorations to implement these features. Thanks, ^_^ |
Hi, Thanks for the info :D So, yeah, either would need to add this kind of special Component which have "soft" bundaries.
Let me know how it goes :) Regards |
Hi, i am trying to use Vexriscv's CPU framework in ASIC design.
But for now, all logics will be generated in a module. This is unfavorable for IC layout design. The backend department wants the RTL to have a clear boundary between modules and module I/O.
Any suggestions to solve this?
Thanks! ^_^
The text was updated successfully, but these errors were encountered: