Ethernet.proto 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. syntax = "proto3";
  2. package sys.dev.eth;
  3. import "Common.proto";
  4. import "nanopb.proto";
  5. import "customoptions.proto";
  6. option (nanopb_fileopt).enum_to_string = true;
  7. enum models {
  8. NONE = 0;
  9. LAN8720 = 1;
  10. DM9051 = 2;
  11. W5500 = 3;
  12. }
  13. enum types { // This enum is used to define the union type for Eth
  14. UNSPECIFIED = 0; // for unspecified type
  15. SPI = 1;
  16. RMII = 2;
  17. }
  18. message common {
  19. option (nanopb_msgopt).packed_struct = true;
  20. option (nanopb_msgopt).msgid = 10025;
  21. models model = 1 [(cust_field).v_enum = "NONE"];
  22. int32 rst = 2 [(cust_field).v_int32=-1];
  23. uint32 ethtmout_s = 3 [(nanopb).int_size = IS_16, (cust_field).v_uint32 = 30];
  24. }
  25. // SPI Specific Ethernet definitions
  26. message spi {
  27. option (nanopb_msgopt).packed_struct = true;
  28. option (nanopb_msgopt).msgid = 10026;
  29. int32 cs = 1 [(cust_field).v_int32=-1]; // CS pin
  30. uint32 speed = 2 ;
  31. int32 intr = 3 [(cust_field).v_int32=-1];
  32. dev.common.hosts host = 4 [(nanopb).int_size = IS_8,(cust_field).v_enum = "Host1" ]; // Defaults to 2 in your application logic
  33. }
  34. // RMII Specific Ethernet definitions
  35. message rmii {
  36. option (nanopb_msgopt).packed_struct = true;
  37. option (nanopb_msgopt).msgid = 10027;
  38. int32 mdc = 1 [(cust_field).v_int32=-1];
  39. int32 mdio = 2 [(cust_field).v_int32=-1];
  40. }
  41. // Ethernet module configuration
  42. message config {
  43. option (nanopb_msgopt).packed_struct = true;
  44. option (nanopb_msgopt).msgid = 10028;
  45. dev.common.types type = 1 [(cust_field).v_enum = "UNKNOWN"];
  46. common common = 2;
  47. oneof ethType {
  48. spi spi = 3;
  49. rmii rmii = 4;
  50. }
  51. }