For example, dut has 4 ports: cs, dout, din, sclk which do SPI communication.
So they will put into spi_driver which will be put into spi_agent.
But meanwhile, dout can also act as a data ready pin which is not part of the spi protocol. In this case, what should I do? Should I create another agent which only monitors the data ready? Or just monitor that in spi_agent?
In general, what are the rules to group different ports and create a new agent for those groups?